Ok let's try this first. Open your additional.css template and find:
Code:
.primary, textbox, full {
border: 1px solid #2b3851 !important;
}
Change it to this:
Code:
.primary, textbox, full {
border: 1px solid #2b3851;
}
Does that change any borders around the input boxes? Hopefully it won't.
If it does not, then do this:
AdminCP --> Plugins & Products --> Add New Plugin
Product: vBulletin
Hook location: parse_templates
Title: Custom Style Changes
Execution Order: 5
Plugin PHP Code:
Code:
if (STYLEID == XXX) {
if (THIS_SCRIPT == 'login' OR THIS_SCRIPT == 'register') {
$cssfix = '<style type="text/css">
.primary, textbox, full {
border: 1px solid red;
}
</style>';
$template_hook[headinclude_bottom_css] .= $cssfix;
}
}
Change
XXX to the style id number for your style and change
red to your desired color.