cfe:
Nit picky, but suffiently annoying thing. On my cart, you can see that each category is separated by (what should be) a 1 pixel black line. This is true in Firefox, but, of course, not IE. Internet Explorer has a different idea of what a pixel should be, and so it displays a line about 3-4 pixels instead. It looks bad, any ideas?
In Your BetterCategoriesEzInfo.css you have tried to comment out a line by using "//" it appears to work in firefox but IE ignores it.
change```
.betterCategories a, .betterCategories a:visited,
.betterDocuments a, .betterDocuments a:visited,
.betterEzpages a, .betterEzpages a:visited,
.betterInformation a, .betterInformation a:visited,
.betterMoreinformation a, .betterMoreinformation a:visited,
.betterBestsellers a, .betterBestsellers a:visited {
display: block;
background-color: #a2173e;
color: #ffffff;
//border-top: 2px solid #000000;
padding: 3px;
}
to```
.betterCategories a, .betterCategories a:visited,
.betterDocuments a, .betterDocuments a:visited,
.betterEzpages a, .betterEzpages a:visited,
.betterInformation a, .betterInformation a:visited,
.betterMoreinformation a, .betterMoreinformation a:visited,
.betterBestsellers a, .betterBestsellers a:visited {
display: block;
background-color: #a2173e;
color: #ffffff;
/* border-top: 2px solid #000000; */
padding: 3px;
}
or delete this line.