I'm trying to use predefined css classes from vbulletin on my custom page.
However its not showing me expected output (data in predefined class).
It just displays simple text output with no style.
My template under main style contains following code :
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
<title>{vb:raw vboptions.bbtitle}</title>
{vb:raw headinclude}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<div id="pagetitle">
<h1>{vb:raw pagetitle}</h1>
</div>
<h2 class="blockhead">MY TEST PAGE</h2>
<div class="blockbody">
<div class="blockrow">
<table class="tborder" align="center">
<tr><td>My Test Data</td></tr></table>
<p class="forumdescription">My Test Description</p>
</div>
</div>
{vb:raw footer}
</body>
</html>
Above template gives me following output with no styles :
Quote:
My Test Data
My Test Description
|