Quote:
Originally Posted by sinistergaming
i was having the same issue but i was able to fix it.
back up your ARCADE_vB4 template. incase this doesnt work for you..
replace entire contents with this:
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}">
<head>
{vb:raw headinclude}
<title>{vb:rawphrase Arcade} - {vb:raw vboptions.bbtitle}</title>
{vb:raw headinclude_bottom}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<div id="pagetitle">
<h1>{vb:rawphrase Arcade}</h1>
</div>
<vb:if condition="$show['errors']">
<div class="block">
<h2 class="blockhead">{vb:rawphrase errors_occured_when_submitted}</h2>
<div class="blockbody">
<div class="blockrow">
<ol id="errormessages">
{vb:raw errormessages}
</ol>
</div>
</div>
</div>
</vb:if>
<body>
{vb:raw header}
{vb:raw navbar}
<div class="blockbody">
<div class="blockrow">
{vb:raw arcadeheader}
{vb:raw maincontent}
</div>
</div>
{vb:raw footer}
</body>
</html>
|
Thanks for this
..... tried it in ARCADE_vB4 template with no luck, then tried it in ARCADE template and it worked.
Also removed .....{vb:raw header} {vb:raw navbar} under <body> tags as it was doubling up my headers and navbar.
Again thanks for the code, whether i'm doing the right thing or not bit of a noob at this but it works (maybe) lol.