The html code that gets generated by the ShopSite tag [-- PREVNEXT --] is not displaying in Internet Explorer 7. The pagination links do appear in all other browsers (Safari, Firefox, Opera, etc.) but not IE. Here's a link to the URL:
http://www.iscrapbook.com/store/completekits12x12.html
The HTML code that is being generated is as follows:
<center>
<span class="currentpage"><b>1</b></span> <span class="prevnext"><a class="prevnext" href="http://www.iscrapbook.com/store/completekits12x12-ss2.html">2</a></span> <span class="prevnext"><a class="prevnext" href="http://www.iscrapbook.com/store/completekits12x12-ss3.html">3</a></span> <span class="prevnext"><a class="prevnext" href="http://www.iscrapbook.com/store/completekits12x12-ss4.html">4</a></span> <span class="prevnext"><a class="prevnext" href="http://www.iscrapbook.com/store/completekits12x12-ss2.html">Next</a></span> </center><br>
I've set the css code to display the links as black (I wanted to make sure the problem isn't with the css code):
a.prevnext:link {
text-decoration: none;
color: black;
}
a.prevnext:visited {
text-decoration: none;
color: black;
}
a.prevnext:hover {
text-decoration: underline;
color: black;
}
a.prevnext:active {
text-decoration: underline;
color: black;
}
Any help would be appreciated.