Thanks to TheWindows7Site, I can make the changes I wanted to make to the wrapper, and it wasn't hard to figure out how to change the area in which we type. Right now, I am trying to figure out how to change the colour for the toolbar, and the background colour for the individual buttons.
After a bit of mucking around, I found out that I could change the background color of the buttons using this (in
additional.css):
Code:
.cke_skin_kama .cke_button a:hover,
.cke_skin_kama .cke_button a:focus,
.cke_skin_kama .cke_button a:active /* IE */
{
background-color: #333333!important;
}
However, I cannot find out how to change the background of the buttons while they are NOT "active." I've tried
.cke_skin_kama .cke_button a and
.cke_skin_kama .cke_button, with no luck.
In addition, I'd like to change the background of a GROUP of buttons. In the css, these are "cke_toolgroup" classes, but changing the background-color property doesn't seem to affect the group. (The "cke_toolbar" DOES change the background color, but only SURROUNDING the group.)
Could someone point me in the right direction?
[EDIT: Sorry, posted in vB3 by accident.]