(This auto edit double post thing sucks so I deleted what was previously written so what help I now need is not lost in the jungle...)
Ok so I have the following in CSS definitions:
.smallfont
{
font-family: comic sans ms;
}
And this affects:
Code:
<div>
<a href="forumdisplay.php?f=29"><strong>The Twitching Liver</strong></a>
</div>
<div class="smallfont">Reviews, opinions and disussions on bars, restaurants and clubs in the ROK</div>
</td>
Now with this:
Code:
<div class="smallfont" align="left">
<div style="clear:both">
<img class="inlineimg" src="images/icons/icon1.gif" alt="" border="0" />
<a href="showthread.php?goto=newpost&t=23" title="Go to first unread post in thread 'testing'"><strong>testing</strong></a>
</div>
I want to have "testing" not be limited to just comic sans ms so I wrote:
.clear:both
{
font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
That did not work (you already know that).
Idea to do what I want to accomplish?