Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Category sidebox issue with Internet Explorer

Category sidebox issue with Internet Explorer

Locked

Views: 1,227

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
7 Aug 2008, 8:50 PM
#1
sirbuck avatar

sirbuck

Zen Follower

Join Date:
Jan 2007
Location:
Carlsbad, CA
Posts:
161
Plugin Contributions:
0

Category sidebox issue with Internet Explorer

In my categories sidebox, the first link is aligned all the way left while the rest are correct.
This is only happening in IE. All the other browsers are fine.

You can see the problem here..

http://activatemediainc.com/demo_store

Its only the very first option. all the rest are fine. Anyone else have this problem with IE?

8 Aug 2008, 12:52 PM
#2
stevesh avatar

stevesh

Black Belt

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

Re: Category sidebox issue with Internet Explorer

It's in a <span> by itself, with a different class specified, so the margin and padding on the others aren't applied.

8 Aug 2008, 8:22 PM
#3
sirbuck avatar

sirbuck

Zen Follower

Join Date:
Jan 2007
Location:
Carlsbad, CA
Posts:
161
Plugin Contributions:
0

Re: Category sidebox issue with Internet Explorer

stevesh,
Thanks for the reply. I have been looking around and am not seeing where the <span> is or where to remove it. Any idea where this could be located?

thanks,

8 Aug 2008, 9:08 PM
#4
sirbuck avatar

sirbuck

Zen Follower

Join Date:
Jan 2007
Location:
Carlsbad, CA
Posts:
161
Plugin Contributions:
0

Re: Category sidebox issue with Internet Explorer

Alright I figured it out. Not hard to fix, just difficult to find. In case anyone else is having this problem..

I needed to add width to #categoriesContent .

#categoriesContent {
    background-image: url(http://www.mysite.com/store/images/categorybox_middle.png);
    padding: 0.5em;
    padding: 0.6em 0px 0px 0px;
    [B]width: 100%;[/B]
    }

Hope this helps someone else.