473,386 Members | 1,609 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

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
Jul 20 '05 #1
19 5213
Bill Davidson wrote:
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/


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/
Jul 20 '05 #2
In article <Yl***************@newsfep3-gui.server.ntli.net>,
"Barry Pearson" <ne**@childsupportanalysis.co.uk> wrote:
Bill Davidson wrote:
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/


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.

Thanks for your input Barry.

bill
Jul 20 '05 #3
Barry Pearson wrote:
Bill Davidson wrote:
The website is at: http://www.estatenet.ca/


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"?


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

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

Jul 20 '05 #4
Brian wrote:
Barry Pearson wrote:
Bill Davidson wrote:
The website is at: http://www.estatenet.ca/


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"?


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


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/
Jul 20 '05 #5
On Wed, 18 Feb 2004 23:43:51 -0000, Barry Pearson
<ne**@childsupportanalysis.co.uk> wrote:
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.


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.******@blueyonder.co.invalid (replace ".invalid" with ".uk" to reply)
Jul 20 '05 #6
Michael Winter wrote:
On Wed, 18 Feb 2004 23:43:51 -0000, Barry Pearson
<ne**@childsupportanalysis.co.uk> wrote:
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.


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


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/
Jul 20 '05 #7
Bill Davidson wrote:
My wife's friend had a website built for his company, and it looks great
using a PC.
Hmm, I guess "looks great" is also dependent on using a particular
window size and text size, eh?
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.
The home page has some huge gaps, too.
I know to compare different browers when building a website but what can
I suggest to him for PC/Mac problems.
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.
The website is at: http://www.estatenet.ca/

Comments & suggestions appreciated.


Start over?

--
Reply address is a bottomless spam bucket.
Please reply to the group so everyone can share.
Jul 20 '05 #8
In article <c1*************@ID-224809.news.uni-berlin.de>,
kchayka <us****@c-net.us> wrote:
Bill Davidson wrote:
My wife's friend had a website built for his company, and it looks great
using a PC.


Hmm, I guess "looks great" is also dependent on using a particular
window size and text size, eh?
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.


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


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.
The website is at: http://www.estatenet.ca/

Comments & suggestions appreciated.


Start over?


Thanks everyone, I'll see what the owners of the business has to say.
bill
Jul 20 '05 #9
Barry Pearson wrote:

The CSS uses a type selector, and would be suitable for an element
of document language element type "textarea"
What does that mean? "element of document language element type?"
eg. <textarea>. If there *is* one - OK. I suspect there isn't,


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/

Jul 20 '05 #10
On Tue, 17 Feb 2004 18:45:20 -0500, Bill Davidson
<bi**@williamdavidson.com> wrote:
My wife's friend had a website built for his company,


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
Jul 20 '05 #11
In article <kUaZb.78576$jk2.419582@attbi_s53>,
Brian <us*****@julietremblay.com.invalid-remove-this-part> wrote:
Barry Pearson wrote:

The CSS uses a type selector, and would be suitable for an element
of document language element type "textarea"


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


I assure you there is.

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


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
Jul 20 '05 #12
Bill Davidson wrote:

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


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

BJ
Jul 20 '05 #13
Bill Davidson wrote:
[snip]
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"


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/
Jul 20 '05 #14
On Fri, 20 Feb 2004, Bill Davidson wrote:
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"


No surprises there. Notice they didn't say "nothing can be done about
it", merely that they weren't able to do it.
Jul 20 '05 #15
In article <bi************************@nr-ott01.bellnexxia.net>,
Bill Davidson <bi**@williamdavidson.com> wrote:
In article <kUaZb.78576$jk2.419582@attbi_s53>,
Brian <us*****@julietremblay.com.invalid-remove-this-part> wrote:
Barry Pearson wrote:

The CSS uses a type selector, and would be suitable for an element
of document language element type "textarea"


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


I assure you there is.

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


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"


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|
Jul 20 '05 #16
Andrew Glasgow wrote:
In article ,
Bill Davidson wrote:

....
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"


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


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
Jul 20 '05 #17
Bill Davidson wrote:

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"


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.
Jul 20 '05 #18
kchayka schrieb:

Bill Davidson wrote:

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"
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.


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.

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.


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
Jul 20 '05 #19
Matthias Gutfeldt wrote:
kchayka schrieb:

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.
I take this to mean you don't know the first thing about Dreamweaver -


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.
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.


No, the code actually looks hand-coded, it's so inconsistent.


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.
The site seems to be assembled with PHP.
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? ;)
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.


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.
Jul 20 '05 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Phong Ho | last post by:
Hi everyone, I am using PHP and MySQL to create a dynamic website. Using MS Internet Explorer to test my website, everything works fine. When I use Netscape and Opera to test my work, I have...
1
by: Amanda | last post by:
Hi, hope you can help me with this one. If I want to get the date a page has been last modified, I can do something like .. document.write("<b>Last updated: "+document.lastModified+"</b>"); ...
5
by: Juan Posadas | last post by:
All, I deployed my website that requires V1.1 in the production server. I installed the framework v1.1 with the dotnetfx.exe /c:"install /noaspupgrade" and everything went fine. Then, I...
12
by: Logan | last post by:
Hi, I am not a very experienced asp.net developer, but have a fair idea on how it works & better idea on vb.net. My requirement is to place an asp.net page on a website - which currently has...
0
by: Mr. K.V.B.L. | last post by:
I am a volunteer webmaster for a cycling club and a newbie. I have put together a website that uses nested master pages and ironically, the website will not display correctly on IE but does for...
1
by: Brett Romero | last post by:
Has anyone experienced problems this week with the MSDN website: https://msdn.microsoft.com/subscriptions/. If I click any of the links below "Subscription Benefits", it brings me to a Passport...
3
by: PCgeek | last post by:
sorry moved this over to javascript forum, didn't mean to post 2x! Hi guys, I'm trying to put the finishing touches on my website and could really use some help on this particular issue. My page...
2
by: deshg | last post by:
Hey everyone, I am a php programmer originally and am just helping a friend of mine update their website that they paid a designer (well that's what he called himself!) to do ages ago. I have...
6
by: Liam Gibbs | last post by:
Hello everyone, I'm trying to program a church web site and I'm having a number of problems with the layout. The html is at http://www.altmarvel.net/Liam/index.html and the css is at...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.