Zen Cart Logo
Forums / General Questions / Site & Pictures Look Dull In FF

Site & Pictures Look Dull In FF

Locked

Views: 742

Results 1 to 10 of 10
This thread is locked. New replies are disabled.
8 Sep 2009, 2:37 PM
#1
dpm avatar

dpm

Zen Follower

Join Date:
Mar 2008
Posts:
262
Plugin Contributions:
0

Site & Pictures Look Dull In FF

I'm just wondering why my website and the images look dull in FF compared to IE?

8 Sep 2009, 2:44 PM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Site & Pictures Look Dull In FF

Everything looks exactly the same here in both browsers (using the same monitor). Are you viewing the site on two different monitors?

8 Sep 2009, 2:47 PM
#3
dpm avatar

dpm

Zen Follower

Join Date:
Mar 2008
Posts:
262
Plugin Contributions:
0

Re: Site & Pictures Look Dull In FF

No I'm using the same monitor, that's very strange.

I also have a larger white gap under the header image in FF and not in IE.

8 Sep 2009, 2:55 PM
#4
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Site & Pictures Look Dull In FF

You have an empty table just below the mainWrapper with a height of 12px that IE may be ignoring.

8 Sep 2009, 3:10 PM
#5
dpm avatar

dpm

Zen Follower

Join Date:
Mar 2008
Posts:
262
Plugin Contributions:
0

Re: Site & Pictures Look Dull In FF

It's an empty table of 10px but I want that there's as that makes the spacing correct like it is in IE. It's the larger white space that's been added for some reason in FF between the header and the empty 10px table.

8 Sep 2009, 3:24 PM
#6
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Site & Pictures Look Dull In FF

You have messed up the page organization - you have an empty table, a spacer image, an image map, a line break and another empty table before the header, and #headerWrapper contains the entire rest of the site instead of just the header.

Empty tables and breaks are sometimes handled differently by IE and Firefox.

You can do the same job as the empty tables, spacer and break using margins in your stylesheet, and that will generally be handled the same by different browsers.

8 Sep 2009, 3:30 PM
#7
dpm avatar

dpm

Zen Follower

Join Date:
Mar 2008
Posts:
262
Plugin Contributions:
0

Re: Site & Pictures Look Dull In FF

A few of those things are used to get the spacing right so should they not be in the header and really be in the stylesheet?

What do you mean #headerWrapper contains the full site? :no:

8 Sep 2009, 3:53 PM
#8
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Site & Pictures Look Dull In FF

Presumably as a result of your modifications, the #headerWrapper div is not closed when it should be, so continues open and holds everything following it.

HTML validation shows 174 errors (most of them stemming from a small range of base errors). Fix these and then see what display problems remain.

8 Sep 2009, 4:04 PM
#9
dpm avatar

dpm

Zen Follower

Join Date:
Mar 2008
Posts:
262
Plugin Contributions:
0

Re: Site & Pictures Look Dull In FF

Thanks for your help.

It's all very confusing :(

A few of the problems seem to mention opening and ending tag mismatch, should it always be <body/> and not </body> like I have it?

8 Sep 2009, 5:00 PM
#10
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Site & Pictures Look Dull In FF

An ending tag will always be like </body>, unless it is a self-closing tag like <br />.