Quelyn
10 years agoGenius
CSS Question: Override or Cancel default style
So, I am working on my theme and whenever I made a change within the WYSIWYG TinyMCE editor to a table row background, it doesn't appear until the KB is published. I looked in the CSS and it looks l...
- 10 years ago
I'm far from being a CSS expert, but if no one esle respond, you could give that a go ...
When adding a Table in TinyMCE, it looks like the class is "mce-item-table"
In your css, you could add:
.mce-item-table td {
background-colour:transparent;
}
or:
.mce-item-table td {
background-colour:none;
}
Note: you probably don't need to go to the pain of changing your CSS and publishing it to see if it works or not. You can add / change CSS style on the fly with FireBug (for FireFox) or any web developer tools on Chrome / IE /Safari