How To Change This Border..?

Burns45

New Member
Hey I can't for the life of me figure out how to change the color of the 2 white borders on this screen shot, can anyone help?? thanks.

borderw.jpg
 
Message border...
Note: this requires you to edit a main script file so you will have to repeat everytime you upgrade
open clientscript/vbulletin_editor.css and find (should be the 1st css attribute):
Code:
.vBulletin_editor
{
	border: 2px groove;
}
replace with:
Code:
.vBulletin_editor
{
	border:2px solid [color=red]#000[/color];
}
change the color to your taste (highlighted in red)

Options border:
Note: This is the fieldset css so this will appy to all fieldset borders

Open your styles manager
Admincp >> Styles & Templates >> style manager >> your style

scroll down to:
"Additional CSS Definitions"

in the 1st box @ the bottom find:
Code:
.fieldset { margin-bottom: 6px;}

Replace with:
Code:
.fieldset { margin-bottom: 6px; border: 1px solid [color=red]#000[/color];}

change the color to your taste (highlighted in red)
 
Well I changed both of them as he said and it fixed the 2 borders in my first pic but it never changed the border in my postbit as shown in this pic:

boxt.jpg
 
Back
Top