If any one is having problems seeing the whole page in vb 4.2 like i was, here is a temp fix until the plugin author fixes/updates the plugin again
Follow the Template Edits until you get to
PHP Code:
Find the following Text in Template header:
</vb:if>
</ul>
instead find:
PHP Code:
<input type="submit" class="loginbutton" tabindex="104" value="{vb:rawphrase log_in}" title="{vb:rawphrase enter_username_to_login_or_register}" accesskey="s" />
and add this under it:
PHP Code:
<vb:if condition="$vboptions['jqt_slider_active']">
</noscript>
</vb:if>
Then find:
PHP Code:
<label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" id="cb_cookieuser_navbar" class="cb_cookieuser_navbar" accesskey="c" tabindex="103" />
(NOTE: i couldent remember what was between <label> </lable>
so when replacing remove </label> form the original)
and replace it with:
PHP Code:
<label for="cb_cookieuser_navbar"><input type="hidden" name="cookieuser" value="1" id="cb_cookieuser_navbar" class="cb_cookieuser_navbar" accesskey="c" tabindex="103" /> </label>
If you have connecting with facebook on:
Find this:
(last one down,
not on top!)
PHP Code:
<vb:if condition="$vboptions['enablefacebookconnect']">
{vb:raw facebook_header}
</vb:if>
And then replace it with this:
PHP Code:
<noscript>
<vb:if condition="$vboptions['enablefacebookconnect']">
{vb:raw facebook_header}
</vb:if>
</noscript>
and continue with the rest of the template edits
hope this helps!