
Originally Posted by
jettrue
The code you just pasted worked just fine on my site. Make sure there isn't another .itemTitle css entry somewhere, and make sure you only have ONE main stylesheet uploaded to the server (every stylesheet that is only and in the css/ folder will try and express itself). If you still have issues, please post a link.
Thanks for checking Jettrue, that gave me the bump I needed. I went down the list of bold items in the stylesheet and disabled them to see if it would fix the problem. This is what I found...
Code:
.centerColumn a:link , #navBreadCrumb a:link {
font-weight: bold;
text-decoration: none;
color: #9B897B;
}
.centerColumn a:visited , #navBreadCrumb a:visited {
color: #9B897B;
font-weight: bold;
text-decoration: none;
}
So after seeing that, currently learning CSS, I did this...
Code:
.centerBoxContentsProducts a:visited, .centerBoxContentsProducts a:link {
font-size: smaller;
font-weight: normal;
text-decoration: none;
}
Now it is acting as expected :-)
Cal