Okay, the update is installed - the fix for the "remember me" wrap around at the login area only has been fixed for the FORUM screen, not the vbCMS. My dev guy, who is rightfully worshipped as a minor deity, figured out and implemented the fix. Here it is.
To apply to CMS section:
Code:
Styles & Templates
Product: vBulletin CMS
Style: Morbid Blue - Fluid
Title: vbcms.css
BAD!!
/*label, .label {
font-weight:bold;
padding: 5px 0;
display:block;
float: {vb:stylevar left};
clear: {vb:stylevar right};
}*/
GOOD!!
label, .label {
font-weight: normal;
padding: 0px;
display: inline;
float: none;
clear: none;
}