There is a typo in the stylesheet - I forgot to change the example background image path from /images/ to /buttons/english/ when modifying the code to allow for multiple languages. So
Code:
/*individual page rules go after the general rules*/
#categories li a.catBg2 {
background-image: url(../images/catbg2.gif);
height: 30px;
}
#categories li a.catBg2:hover {
background-image: url(../images/catbg2hover.gif);
}
should be
Code:
/*individual page rules go after the general rules*/
#categories li a.catBg2 {
background-image: url(../buttons/english/catbg2.gif);
height: 30px;
}
#categories li a.catBg2:hover {
background-image: url(../buttons/english/catbg2hover.gif);
}
See the revised stylesheet I posted above (post 658).
Bookmarks