Quote:
Originally Posted by JWL
This is the Black Theme Supplied by Vbulletin.
|
Ohh well then isn't that lovely lol simple issue really, go to editor.css in your style manager under the CSS Templates family and edit, now find:
Code:
.editor_controls .attachment {
font-size:{vb:stylevar small_fontSize};
border-top:none;
padding:1px;
position: relative;
}
Replace with:
Code:
.editor_controls .attachment {
background: #FF0000;
font-size:{vb:stylevar small_fontSize};
border-top:none;
padding:1px;
position: relative;
}
Replace the #FF0000 with your color code or use rgb(205, 205, 205) that's a red and gray example but use the red you'll see the change then edit to suit, if you see a stylevar variable in the code and know what color it is you can easily key that in as well

.