Is it possible to set the default font for product descriptions to 12pt.?
The font CS-Cart V3 is using is way too small and I don't have time to select and change every product description. The font in 2.2.4 was perfect!
Thanks.
[size=4]Try setting the following:[/size]
#content_description {
font-size:12pt;
}
Or perhaps
#content_description p {
font-size:12pt;
}
if you only want the normal p block font size to be set to 12pt
Thank you.