Zen Cart Logo

Urgent - Help!

Locked

Views: 1,160

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
15 Jun 2008, 5:25 PM
#1
mthem2003 avatar

mthem2003

New Zenner

Join Date:
Jan 2008
Posts:
83
Plugin Contributions:
0

Urgent - Help!

hello
for some reason , my background in the central column and bottom navigation bar is not consistent in the IE and firefox.

I want it to look the way it is in IE, but with firefox , it doesn't . the grey background in flowing in between my header and central box.

can you please help me find out what exactly is wrong?

site: https://www.thepurseworld.com

15 Jun 2008, 5:55 PM
#2
gjh42 avatar

gjh42

Black Belt

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

Re: Urgent - Help!

Your stylesheet has```
/the top toolbar/
#navMainWrapper, #navCatTabsWrapper {
margin: 0em;
margin-bottom: 0px;
height: 30px;
background-color: transparent;
background-image: none;
background-repeat: no-repeat;
font-weight: bold;
color: #ffffff;
padding: 0px;
}


Either find the actual height of #navMain and use that, or eliminate the height altogether and let #navMain take what space it needs.
15 Jun 2008, 6:19 PM
#3
mthem2003 avatar

mthem2003

New Zenner

Join Date:
Jan 2008
Posts:
83
Plugin Contributions:
0

Re: Urgent - Help!

thanks for your reply.

when i removed the height. i had the whole template just shift to the right...not sure why it did that?

i dont know why in IE it is working fine, but in firefox it doesnt?

gjh42 any ideas?

15 Jun 2008, 6:27 PM
#4
gjh42 avatar

gjh42

Black Belt

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

Re: Urgent - Help!

It may have to do with the #navMain code being in a javascript call, and not appearing at all if scripts are disabled in the browser. Or it might just be that the custom code surrounding the mod wasn't written quite right.

Try setting a smaller fixed height for #navMainWrapper (step down gradually until the space disappears.)

15 Jun 2008, 8:22 PM
#5
batteryman avatar

batteryman

Zen Follower

Join Date:
Jul 2004
Location:
Las Vegas
Posts:
327
Plugin Contributions:
0

Re: Urgent - Help!

Hello there are two ways to do this according to you stylesheet

first which is the better way probably

stylesheet.css (line 208)
#contentMainWrapper {
background-color:#FFFFFF;
margin:0px 0em 0em;
}second
stylesheet.css (line 208)
#contentMainWrapper {
background-image:url(../images/centerbox.jpg);
background-repeat:repeat;
margin:0px 0em 0em;
}In the second method I repeated your background image which fixes it but it really doesnt make sense because you background image is a 200 x 200 white square. So if you do away with it and use the background-color, it will speed up on your loading time and query slightly.

15 Jun 2008, 9:52 PM
#6
mthem2003 avatar

mthem2003

New Zenner

Join Date:
Jan 2008
Posts:
83
Plugin Contributions:
0

Re: Urgent - Help!

Thanks for all your help, it worked !!!

by adding #FFFFFF in #contentMainWrapper{