Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old July 20th, 2005, 06:40 PM
Bill Davidson
Guest
 
Posts: n/a
Default Problems with website display

My wife's friend had a website built for his company, and it looks great
using a PC.

When viewed on a Mac using either Safari or Explorer the formatting is
terrible. The home page is not too bad, however, any of the other pages
selected have large spaces between paragraphs.

I know to compare different browers when building a website but what can
I suggest to him for PC/Mac problems.

The website is at: http://www.estatenet.ca/


Comments & suggestions appreciated.


bill, toronto
  #2  
Old July 20th, 2005, 06:41 PM
Barry Pearson
Guest
 
Posts: n/a
Default Re: Problems with website display

Bill Davidson wrote:[color=blue]
> My wife's friend had a website built for his company, and it looks
> great using a PC.
>
> When viewed on a Mac using either Safari or Explorer the formatting is
> terrible. The home page is not too bad, however, any of the other
> pages selected have large spaces between paragraphs.
>
> I know to compare different browers when building a website but what
> can I suggest to him for PC/Mac problems.
>
> The website is at: http://www.estatenet.ca/[/color]

You (they) have some dodgy CSS. For example, it starts:

textarea{ color: #303030; font-family : Arial, Verdana, Geneva, Helvetica,
sans-serif; font-size : 11px; }

Perhaps this was supposed to be ".textarea"?

Also, there should be no space between numbers & units in (say) "line-height:
12 px" elsewhere. That could do strange things if the browser treated it as
"line-height: 12;", instead of ignoring it.

It might be worth while putting in DOCTYPEs, then validating both HTML & CSS
at W3C, to see what other bugs it can find. At least then you will know
whether you have typos or something more fundamental.

--
Barry Pearson
http://www.Barry.Pearson.name/photography/
http://www.BirdsAndAnimals.info/
http://www.ChildSupportAnalysis.co.uk/


  #3  
Old July 20th, 2005, 06:41 PM
Bill Davidson
Guest
 
Posts: n/a
Default Re: Problems with website display

In article <YlHYb.493$zv5.418@newsfep3-gui.server.ntli.net>,
"Barry Pearson" <news@childsupportanalysis.co.uk> wrote:
[color=blue]
> Bill Davidson wrote:[color=green]
> > My wife's friend had a website built for his company, and it looks
> > great using a PC.
> >
> > When viewed on a Mac using either Safari or Explorer the formatting is
> > terrible. The home page is not too bad, however, any of the other
> > pages selected have large spaces between paragraphs.
> >
> > I know to compare different browers when building a website but what
> > can I suggest to him for PC/Mac problems.
> >
> > The website is at: http://www.estatenet.ca/[/color]
>
> You (they) have some dodgy CSS. For example, it starts:
>
> textarea{ color: #303030; font-family : Arial, Verdana, Geneva, Helvetica,
> sans-serif; font-size : 11px; }
>
> Perhaps this was supposed to be ".textarea"?
>
> Also, there should be no space between numbers & units in (say) "line-height:
> 12 px" elsewhere. That could do strange things if the browser treated it as
> "line-height: 12;", instead of ignoring it.
>
> It might be worth while putting in DOCTYPEs, then validating both HTML & CSS
> at W3C, to see what other bugs it can find. At least then you will know
> whether you have typos or something more fundamental.[/color]


Thanks for your input Barry.

bill
  #4  
Old July 20th, 2005, 06:45 PM
Brian
Guest
 
Posts: n/a
Default Re: Problems with website display

Barry Pearson wrote:[color=blue]
> Bill Davidson wrote:
>[color=green]
>> The website is at: http://www.estatenet.ca/[/color]
>
> You (they) have some dodgy CSS. For example, it starts:
>
> textarea{ color: #303030; font-family : Arial, Verdana, Geneva, Helvetica,
> sans-serif; font-size : 11px; }
>
> Perhaps this was supposed to be ".textarea"?[/color]

What is wrong (syntactically) with styling the textarea element?

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

  #5  
Old July 20th, 2005, 06:45 PM
Barry Pearson
Guest
 
Posts: n/a
Default Re: Problems with website display

Brian wrote:[color=blue]
> Barry Pearson wrote:[color=green]
>> Bill Davidson wrote:[color=darkred]
>>> The website is at: http://www.estatenet.ca/[/color]
>>
>> You (they) have some dodgy CSS. For example, it starts:
>>
>> textarea{ color: #303030; font-family : Arial, Verdana, Geneva,
>> Helvetica, sans-serif; font-size : 11px; }
>>
>> Perhaps this was supposed to be ".textarea"?[/color]
>
> What is wrong (syntactically) with styling the textarea element?[/color]

That is for Bill Davidson to decide. I simply asked a tentative question.

The CSS uses a type selector, and would be suitable for an element of document
language element type "textarea", eg. <textarea>. If there *is* one - OK. I
suspect there isn't, and it is really supposed to be a class selector, hence
my comment. But Bill can decide.

--
Barry Pearson
http://www.Barry.Pearson.name/photography/
http://www.BirdsAndAnimals.info/
http://www.ChildSupportAnalysis.co.uk/


  #6  
Old July 20th, 2005, 06:45 PM
Michael Winter
Guest
 
Posts: n/a
Default Re: Problems with website display

On Wed, 18 Feb 2004 23:43:51 -0000, Barry Pearson
<news@childsupportanalysis.co.uk> wrote:
[color=blue]
> The CSS uses a type selector, and would be suitable for an element
> of document language element type "textarea", eg. <textarea>. If
> there *is* one - OK. I suspect there isn't, and it is really
> supposed to be a class selector, hence my comment. But Bill can
> decide.[/color]

Are you casting doubt on the existence of the TEXTAREA element here, or am
I just interpreting your post incorrectly?

http://www.w3.org/TR/html4/interact/forms.html#h-17.7

Mike

--
Michael Winter
M.Winter@blueyonder.co.invalid (replace ".invalid" with ".uk" to reply)
  #7  
Old July 20th, 2005, 06:45 PM
Barry Pearson
Guest
 
Posts: n/a
Default Re: Problems with website display

Michael Winter wrote:[color=blue]
> On Wed, 18 Feb 2004 23:43:51 -0000, Barry Pearson
> <news@childsupportanalysis.co.uk> wrote:
>[color=green]
>> The CSS uses a type selector, and would be suitable for an element
>> of document language element type "textarea", eg. <textarea>. If
>> there *is* one - OK. I suspect there isn't, and it is really
>> supposed to be a class selector, hence my comment. But Bill can
>> decide.[/color]
>
> Are you casting doubt on the existence of the TEXTAREA element here,
> or am I just interpreting your post incorrectly?
> http://www.w3.org/TR/html4/interact/forms.html#h-17.7[/color]

I was just querying it. It may be relevant to the "contact" page. It is up to
Bill to decide - I can't do that. Ask him, not me!

--
Barry Pearson
http://www.Barry.Pearson.name/photography/
http://www.BirdsAndAnimals.info/
http://www.ChildSupportAnalysis.co.uk/


  #8  
Old July 20th, 2005, 06:45 PM
kchayka
Guest
 
Posts: n/a
Default Re: Problems with website display

Bill Davidson wrote:
[color=blue]
> My wife's friend had a website built for his company, and it looks great
> using a PC.[/color]

Hmm, I guess "looks great" is also dependent on using a particular
window size and text size, eh?
[color=blue]
> When viewed on a Mac using either Safari or Explorer the formatting is
> terrible. The home page is not too bad, however, any of the other pages
> selected have large spaces between paragraphs.[/color]

The home page has some huge gaps, too.
[color=blue]
> I know to compare different browers when building a website but what can
> I suggest to him for PC/Mac problems.[/color]

I doubt it is specifically a PC/Mac issue, but more likely a result of
all those nested layout tables. The code is a pile of sludge that needs
some serious cleaning up.
[color=blue]
> The website is at: http://www.estatenet.ca/
>
> Comments & suggestions appreciated.[/color]

Start over?

--
Reply address is a bottomless spam bucket.
Please reply to the group so everyone can share.
  #9  
Old July 20th, 2005, 06:45 PM
Bill Davidson
Guest
 
Posts: n/a
Default Re: Problems with website display

In article <c12ig5$1cvn4n$1@ID-224809.news.uni-berlin.de>,
kchayka <usenet@c-net.us> wrote:
[color=blue]
> Bill Davidson wrote:
>[color=green]
> > My wife's friend had a website built for his company, and it looks great
> > using a PC.[/color]
>
> Hmm, I guess "looks great" is also dependent on using a particular
> window size and text size, eh?
>[color=green]
> > When viewed on a Mac using either Safari or Explorer the formatting is
> > terrible. The home page is not too bad, however, any of the other pages
> > selected have large spaces between paragraphs.[/color]
>
> The home page has some huge gaps, too.
>[color=green]
> > I know to compare different browers when building a website but what can
> > I suggest to him for PC/Mac problems.[/color]
>
> I doubt it is specifically a PC/Mac issue, but more likely a result of
> all those nested layout tables. The code is a pile of sludge that needs
> some serious cleaning up.
>[color=green]
> > The website is at: http://www.estatenet.ca/
> >
> > Comments & suggestions appreciated.[/color]
>
> Start over?[/color]

Thanks everyone, I'll see what the owners of the business has to say.


bill
  #10  
Old July 20th, 2005, 06:45 PM
Brian
Guest
 
Posts: n/a
Default Re: Problems with website display

Barry Pearson wrote:[color=blue]
>
> The CSS uses a type selector, and would be suitable for an element
> of document language element type "textarea"[/color]

What does that mean? "element of document language element type?"
[color=blue]
> eg. <textarea>. If there *is* one - OK. I suspect there isn't,[/color]

I assure you there is.

http://www.w3.org/TR/html401/interac...#edef-TEXTAREA

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

  #11  
Old July 20th, 2005, 06:46 PM
Andy Dingley
Guest
 
Posts: n/a
Default Re: Problems with website display

On Tue, 17 Feb 2004 18:45:20 -0500, Bill Davidson
<bill@williamdavidson.com> wrote:
[color=blue]
>My wife's friend had a website built for his company,[/color]

When ? That code is pure 1997. It really doesn't cut it for
today's standards - it fails on non-IE browsers, non-PC devices,
non-mainstream screen sizes/resolutions, it makes no attempt at
accessibility and the coding is generally sloppy.

--
Smert' spamionam
  #12  
Old July 20th, 2005, 06:46 PM
Bill Davidson
Guest
 
Posts: n/a
Default Re: Problems with website display

In article <kUaZb.78576$jk2.419582@attbi_s53>,
Brian <usenet3@julietremblay.com.invalid-remove-this-part> wrote:
[color=blue]
> Barry Pearson wrote:[color=green]
> >
> > The CSS uses a type selector, and would be suitable for an element
> > of document language element type "textarea"[/color]
>
> What does that mean? "element of document language element type?"
>[color=green]
> > eg. <textarea>. If there *is* one - OK. I suspect there isn't,[/color]
>
> I assure you there is.
>
> http://www.w3.org/TR/html401/interac...#edef-TEXTAREA[/color]



Update:


My wife suggested he call the company who put the website together and
tell them the site does not show properly on Macs.


Answer: "there is nothing we can do about it"


bill
  #13  
Old July 20th, 2005, 06:46 PM
BJ in Texas
Guest
 
Posts: n/a
Default Re: Problems with website display

Bill Davidson wrote:[color=blue]
>
> Update:
>
>
> My wife suggested he call the company who put the website
> together and tell them the site does not show properly on
> Macs.
>
>
> Answer: "there is nothing we can do about it"
>
>
> bill[/color]

Next suggestion is that they give the same reply when he
attempts to bill them... Assuming they didn't pay before
checking.

BJ


  #14  
Old July 20th, 2005, 06:46 PM
Barry Pearson
Guest
 
Posts: n/a
Default Re: Problems with website display

Bill Davidson wrote:
[snip][color=blue]
> Update:
>
> My wife suggested he call the company who put the website together and
> tell them the site does not show properly on Macs.
>
> Answer: "there is nothing we can do about it"[/color]

Sometimes you have to stop banging your head against the wall and walk away.
But it would be interesting (although probably too late now) to know the
reason behind that. Sometimes people just can tolerate yet another problem on
their agenda. Well ... you tried.

--
Barry Pearson
http://www.Barry.Pearson.name/photography/
http://www.BirdsAndAnimals.info/
http://www.ChildSupportAnalysis.co.uk/


  #15  
Old July 20th, 2005, 06:46 PM
Alan J. Flavell
Guest
 
Posts: n/a
Default Re: Problems with website display

On Fri, 20 Feb 2004, Bill Davidson wrote:
[color=blue]
> Update:
>
>
> My wife suggested he call the company who put the website together and
> tell them the site does not show properly on Macs.
>
>
> Answer: "there is nothing we can do about it"[/color]

No surprises there. Notice they didn't say "nothing can be done about
it", merely that they weren't able to do it.
  #16  
Old July 20th, 2005, 06:47 PM
Andrew Glasgow
Guest
 
Posts: n/a
Default Re: Problems with website display

In article <bill-64C109.10185620022004@nr-ott01.bellnexxia.net>,
Bill Davidson <bill@williamdavidson.com> wrote:
[color=blue]
> In article <kUaZb.78576$jk2.419582@attbi_s53>,
> Brian <usenet3@julietremblay.com.invalid-remove-this-part> wrote:
>[color=green]
> > Barry Pearson wrote:[color=darkred]
> > >
> > > The CSS uses a type selector, and would be suitable for an element
> > > of document language element type "textarea"[/color]
> >
> > What does that mean? "element of document language element type?"
> >[color=darkred]
> > > eg. <textarea>. If there *is* one - OK. I suspect there isn't,[/color]
> >
> > I assure you there is.
> >
> > http://www.w3.org/TR/html401/interac...#edef-TEXTAREA[/color]
>
>
>
> Update:
>
>
> My wife suggested he call the company who put the website together and
> tell them the site does not show properly on Macs.
>
>
> Answer: "there is nothing we can do about it"[/color]

What they mean is 'We don't care'.

--
| Andrew Glasgow <amg39(at)cornell.edu> |
| "This site was constructed with FrontPage. We regret any inconvenience and |
| irritation this may cause. We're sorry about the whole thing, really, but |
| Frontpage seemed like a good idea at the time." -- Jerry Muelver in alt.html|
  #17  
Old July 20th, 2005, 06:47 PM
Andrew Thompson
Guest
 
Posts: n/a
Default Re: Problems with website display

Andrew Glasgow wrote:[color=blue]
> In article ,
> Bill Davidson wrote:[/color]
....[color=blue][color=green]
>> My wife suggested he call the company who put the website together
>> and
>> tell them the site does not show properly on Macs.[/color][/color]
....[color=blue][color=green]
>> Answer: "there is nothing we can do about it"[/color]
>
> What they mean is 'We don't care'.[/color]

Is there any gaurantee as to useability
in the agreement to create the site?

I was thinking that something along this line..
"..contracted to construct a web site
for use, 'and useable on', the World Wide Web*..."
...should be expected in a site for the WWW
(which probably means it is not)

* One might expect a percentage there, as
I guess that many companies would neither
expect their site to work on Lynx, nor care..

--
Andrew Thompson
* http://www.PhySci.org/ Open-source software suite
* http://www.PhySci.org/codes/ Web & IT Help
* http://www.1point1C.org/ Science & Technology


  #18  
Old July 20th, 2005, 06:47 PM
kchayka
Guest
 
Posts: n/a
Default Re: Problems with website display

Bill Davidson wrote:[color=blue]
>
> My wife suggested he call the company who put the website together and
> tell them the site does not show properly on Macs.
>
> Answer: "there is nothing we can do about it"[/color]

Considering the state of the code, I take this to mean they use
Dreamweaver (or some other WYSIWYG editor) and don't really know the
first thing about coding HTML.

IOW, this is what the editor spewed out and they don't know how it
works, so they don't know how to fix it.

--
Reply address is a bottomless spam bucket.
Please reply to the group so everyone can share.
  #19  
Old July 20th, 2005, 06:47 PM
Matthias Gutfeldt
Guest
 
Posts: n/a
Default Re: Problems with website display

kchayka schrieb:[color=blue]
>
> Bill Davidson wrote:[color=green]
> >
> > My wife suggested he call the company who put the website together and
> > tell them the site does not show properly on Macs.
> >
> > Answer: "there is nothing we can do about it"[/color]
>
> Considering the state of the code, I take this to mean they use
> Dreamweaver (or some other WYSIWYG editor) and don't really know the
> first thing about coding HTML.[/color]

I take this to mean you don't know the first thing about Dreamweaver -
it simply doesn't produce that kind of code. Attributes are usually
within "", not sometimes without quotes and sometimes in single quotes.
And DW javascripts have that tell-tale MM_ label and are ridiculously
complex, quite unlike the scripts on that site.

[color=blue]
> IOW, this is what the editor spewed out and they don't know how it
> works, so they don't know how to fix it.[/color]

No, the code actually looks hand-coded, it's so inconsistent.
The site seems to be assembled with PHP. Perhaps the company that built
it (http://www.moneymaker4agents.com) knows how to write a PHP CMS, and
has a graphic designer for the pretty images, but doesn't have anybody
on board who knows how to write proper HTML/CSS.


Matthias
  #20  
Old July 20th, 2005, 06:47 PM
kchayka
Guest
 
Posts: n/a
Default Re: Problems with website display

Matthias Gutfeldt wrote:
[color=blue]
> kchayka schrieb:[color=green]
>>
>> Considering the state of the code, I take this to mean they use
>> Dreamweaver (or some other WYSIWYG editor) and don't really know the
>> first thing about coding HTML.[/color]
>
> I take this to mean you don't know the first thing about Dreamweaver -[/color]

Um, I only used Dreamweaver as an example of a so-called WYSIWYG editor.
They could have made templates in FrontPage or even PhotoShop for all
I know. The particular tool isn't really relevant. If my reference to
Dreamweaver offended you, then just subsitute "PhotoShop" or something
else that generates HTML. OK?

BTW, Dreamweaver certainly can generate crappy, bloated HTML. It all
depends on the skills of the user, or lack thereof. Older editor
versions are generally worse than newer ones, too. Not everyone is an
expert using the latest MX, you know.
[color=blue][color=green]
>> IOW, this is what the editor spewed out and they don't know how it
>> works, so they don't know how to fix it.[/color]
>
> No, the code actually looks hand-coded, it's so inconsistent.[/color]

Consistency has little to do with it, methinks. Surely you've seen the
sludge FrontPage can spit out? Besides, I can't believe anybody would
hand-code nested tables like that. To me it screams graphical editor
doing its worst.
[color=blue]
> The site seems to be assembled with PHP.[/color]

Are you saying you can't write PHP code with Dreamweaver or some other
like editor, or perhaps that PHP has some magical functionality that
automatically generates code like that? ;)
[color=blue]
> Perhaps the company that built
> it (http://www.moneymaker4agents.com) knows how to write a PHP CMS, and
> has a graphic designer for the pretty images, but doesn't have anybody
> on board who knows how to write proper HTML/CSS.[/color]

How specifically the code got into the state it's in isn't really
important, but keep in mind that a graphic designer isn't likely to
hand-code HTML, but use a graphical tool to create a layout and generate
the code/template. Regardless, per your last statement you actually do
agree with me, that's good enough.

--
Reply address is a bottomless spam bucket.
Please reply to the group so everyone can share.
 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles