View Single Post
  #2  
Old 06-09-2003, 11:17 AM
 
davesphoto davesphoto is offline
 

Member
  
Join Date: May 2003
Posts: 24
 

Default

I don't know if anybody cares but I figured it out: My cart displays much more consistantly from browser to browser if i split the bold function from the same tag as the font size. Eg. instead of
Code:
.TopLabel { COLOR: #000000; FONT: bold 12px; }

which is how it was when I installed x-cart use:
Code:
.TopLabel { COLOR: #000000; FONT-SIZE: 12px; FONT-WEIGHT: bold; }
This seems to display exactly the same in IE5 and IE6 but seems to be more universal (works also in Netscape, Omni, Safari and Opera).

I hope this might help some other newbie like myself.
Reply With Quote