I copied exactly what you did and it didn't work. It's because you didn't use standard quote marks in your html and so it converted it.
Use " not ”
So:
HTML Code:
<div style="text-align:center;">
<h2 class="seovb2">$foruminfo[title_clean]</h2>
<h3 class="seovb3">$foruminfo[description]</h3>
</div>
Not:
HTML Code:
<div style=”text-align:center;”>
<h2 class=”seovb2″>$foruminfo[title_clean]</h2>
<h3 class=”seovb3″>$foruminfo[description]</h3>
</div>