|
Well everyone has been telling you to look at your source code of the page.
Your using VB2 so there is no style integration with your board so my answer is as I posted 6 weeks ago. Since your using reviewpost stylesheets the comments use the medium class which does not have a font class statement only a size which means it falls back on the body class.
This is what is in the stylesheet for the medium tag which is same family type you want.
.medium {
font-size: 10pt;
font-family: Verdana, Helvetica, sans-serif;
}
Why not simple edit the showproduct.tmpl and edit line the line that is like this
<font class="medium"><br />{$reviewtext[$x]}</font>
to this
<font class="small"><br />{$reviewtext[$x]}</font>
|