Just a quick note on a couple of small fixes that I have made on the Element skin 3.6.0

Added to the zip file: 2 missing images (yellow and red small infraction icons)

and the following changes are now included in teh zip file:

In Additional CSS Definitions look for:

Code:
.vb_menu_control a:hover, .evb_menu_control a:active {
color:  #FFFFFF;
text-decoration: underline;
}
change it to:

Code:
.vb_menu_control a:hover, .vb_menu_control a:active {
color:  #FFFFFF;
text-decoration: underline;
}
In the Navbar template look for:

Code:
<input type="hidden" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />
Change it to:

Code:
<label for="cb_cookieuser_navbar"><input type="hidden" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" /></label>
replace the postbit_online template with this:

Code:
<if condition="$onlinestatus==0"><span class="offline">$vbphrase[offline]</span></if>
<if condition="$onlinestatus==1"><span class="online">$vbphrase[online]</span></if>
<if condition="$onlinestatus==2"><span class="invisible">$vbphrase[invisible]</span></if>