Font size in sitetopiccontent and generalboxcontent produced by HTML editor

Re: Font size in sitetopiccontent and generalboxcontent produced by HTML editor

by Mark Berthelemy -
Number of replies: 0
Thanks Joseph,

I don't think I can change anything there that will make a difference. If I use the default output from the editor - ie. not changing any font sizes - the HTML that's produced looks something like this:

<table id="intro" class="generalbox" align="center" border="0" cellpadding="5" cellspacing="0" width="70%">
<tbody>
<tr>
<td class="generalboxcontent">
<p>
<br>
The following list of Frequently Asked Questions will be added to as issues arise.

</p>
</td>
</tr>
</tbody>
</table>

So, the only formatting elements used here are the css styles for <td> and <p>, which I've got set as follows:

body, td, th, li, p, generalboxcontent, sitetopiccontent  {
  font-family:Arial, Verdana, Helvetica, sans-serif;
  font-size:97%;
  letter-spacing:0.02em;
}

Now, when I put text into a label, it appears as I expect (with smallish text. However labels use the <td> class "activity label", which, again, I can't find in the CSS files anywhere.

I'm using the Firefox Web Developer Toolbar to help identify the CSS elements - it picks up all the CSS files being used by a page and allows you to edit them.

Thanks,

Mark