I see a few things wrong but not sure if they are related..
your .tcat from the ARCADE.css is not reading .. not sure why..
check your ARCADE.css to make sure it's there.
also there is a extra </div> in the ARCADE template at the bottom
+ the arcade does not call the right template for vb4
so I would replace the ARCADE template with
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<title>{vb:raw ibprotitle}</title>
{vb:raw headinclude}
{vb:raw headinclude_bottom}
</head>
<body>
{vb:raw header}
{vb:raw navbar}
{vb:raw arcadeheader}
{vb:raw maincontent}
{vb:raw footer}
</div>
</body>
</html>
I would also
open /arcade/functions/functions.php
search for // we are on vB 4 or later WHOHOOO
Just under it on line 1380 you'll see
Code:
$navbits = $output_array['NAV'];
move it under
Code:
$navbits = construct_navbits(array('' => $ibforums->lang['page_title']));
that just for starters..
and see what if anything it fixes
oh you should also do this fix as well
https://vborg.vbsupport.ru/showpost....3&postcount=15