just a quick one... if you want your pages to be valid ( well, in the easy_pages area ) go into the templates
AdminCp / vBulletin Options / Edit Templates / Easy_Pages
and replace all the contents with this
Quote:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]" id="vbulletin_html">
<head>
$headinclude
<title>$vboptions[bbtitle] - $page[title]</title>
</head>
<body>
$header
$navbar
<if condition="$page[table_wrap]">
<table cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" border="0" width="100%">
<tr>
<td class="tcat">$page[title]</td>
</tr>
<tr>
<td class="alt1">
</if>
$page[content]
<if condition="$page[table_wrap]">
</td>
</tr>
</table>
</if>
$footer
</body>
</html>
|