@da_judge @markfl @t3h3th32 the fix for messed up styles:
in templates search for "headinclude_bottom" of your style.
Copy only the first line of this template. For example mine is:
Code:
{vb:cssfile additional.css}
Some other styles may be:
Code:
{vb:cssfile additional.css,main.css,responsive.css,othercss.css}
Now go to "reg_ver_start" template of your style and paste that code after:
Code:
{vb:cssfile register.css}
I mean the new reg_ver_start template should be like this:
Code:
{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml"<vb:if condition="$vboptions['enablefacebookconnect']"> xmlns:fb="http://www.facebook.com/2008/fbml"</vb:if> dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}">
<head>
{vb:raw headinclude}
{vb:cssfile register.css}
{vb:cssfile additional.css}
<title><vb:if condition="$show['coppa']">{vb:rawphrase coppa} </vb:if>{vb:rawphrase register_at_x, {vb:raw vboptions.bbtitle}}</title>
{vb:raw headinclude_bottom}
Have fun