Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Problems with a border around my attributes on products...

Problems with a border around my attributes on products...

Locked

Views: 870

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
23 Jul 2009, 2:59 AM
#1
sfklaas avatar

sfklaas

Zen Follower

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

Problems with a border around my attributes on products...

I currently have a border around my attributes for my products. I think it looks great in firefox. However, in IE, it shows up differently. Please go to this link on my site http://www.stevekwebdesign.com/index.php?main_page=product_info&cPath=89_91&products_id=284 and notice the difference between FF and IE. Is there a way to fix that? Ideally, I just want a border that surrounds the attributes to make them stand out more. Maybe there is a better and easier way.

Right now I have this in my css:

#productAttributes { border: solid 1px; }

Any comments or solutions would be greatly appreciated!

23 Jul 2009, 8:45 AM
#2
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: Problems with a border around my attributes on products...

to correct this problem in IE , add height:1%

#productAttributes {
border:1px solid;
height:1%;
}

hope this helps.

24 Jul 2009, 2:49 AM
#3
sfklaas avatar

sfklaas

Zen Follower

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

Re: Problems with a border around my attributes on products...

Yes, it seems to have solved the problem. I would try to ask why this worked, but maybe the best answer is "because it just does".