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.