So I am turning the 05 into CSS, yes still 
But I find an odd occurence that is killing me and I can't find why it is doing what it is doing.
First the code:
Response.Write "<p class=""messagecell"">"
if Request.QueryString("SearchTerms") <> "" then
Response.Write SearchHiLite(formatStr(Reply_Content))
else
Response.Write formatStr(Reply_Content)
end if
Response.Write "</p>"
If the reply starts with a quote (HTML is the standard blockquote id="quote") for some reason the forum outputs this:
<p class="messagecell"> </p>
<blockquote id="quote"><i><b>Originally posted by ...</b></i><br>test<br><br>s</blockquote>
<br><br>message text
<p></p>
It closes the paragraph, no idea why; and adds an empty paragraph before the signature line for no reason.