.itemTitle {font-size: 1.2em;} adjust the 1.2 to taste.
.itemTitle {font-size: 1.2em;} adjust the 1.2 to taste.
.itemTitle {font-size: 1.2em; font-family: georgia;}
I'll show pages from my site with different results. This is what I decided to enter in the stylesheet after passing on Georgia amd staying with the original Verdana font.
.itemTitle {font-size: 1.1em; font-style: normal;}
That is the last line from /*bof product listing*/
this result is bold not normal
http://designerperfumesnob.authsafe....ts-c-1358.html
this has always been normal font and it looks smaller too!
http://designerperfumesnob.authsafe.com/specials.html
I don't understand why it's different for the Shop Our Sale (which is a name change from Specials).
Then we have New Products and All Products and they appear to have yet another font size.
http://designerperfumesnob.authsafe....ducts_new.html
http://designerperfumesnob.authsafe....ducts_all.html
I want to test a couple of font sizes out on all of them and then pick the same one for all.
The font-style: normal; isn't proper CSS, so far as I know. Your text site-wide will follow that set in the body rule unless you change it for different elements. The .itemTitle rule I mentioned works. The rule for Shop Our sale would be #spe##############tBoxContents and the new listing would be #newProductsDefault.
You can easily figure all this out by installing the Firefox browser and either the Web Developer or Firebug plugin.
I double checked the CSS and it should be font-weight: normal. I was able to make changes. Thank you.