If you use the templates and not the CSS file, another option to consider instead of replacing the class name (controlbar) is to override the codes by adding "!important" at the end of each variable you want to change in the CSS definitions such as:
Original vbulletin_editor.css file:
Code:
/* the container for all the edit controls */
#controlbar, .controlbar
{
padding: 2px;
}
In your template "editor_css" apply this code to override the original (vbulletin_editor.css):
Code:
/* the container for all the edit controls */
#controlbar, .controlbar
{
padding:0 !important;
border:0 !important;
}
This way you'll keep the class definitions consistent, do not need to change the other templates and it makes change easier in the future.