Quote:
Originally Posted by 409industries
Hi-
How do I get rid of this gray border that is around all my editor windows site wide? (Visitor messages, Quick Reply, Reply to Thread (Advanced), Post new thread) See attached image to see what i'm referring to.
It doesn't fit well in my color scheme as you can see.
Been searching through code all over the place trying to find what controls this option? StyleVars under Editor don't seem to affect this narrow border.
Thanks for the help!
|
See "mainui.css" or add to additional.css with using "!important"
Code:
span.cke_skin_kama {
border: 1px solid red !important;
border-radius: 5px;
padding: 5px;
}
Let me know if it works.