Hi, just for information.
I'm using the HTMLEditor in a rad grid.
The style
controls the background color for the contant area, but in FF, my html background is actually shown the content area because the content background is either transparent or it inherits the background image from my html style, not the white background.
So by adding !important, this is fixed!
I'm using the HTMLEditor in a rad grid.
The style
.radeditor.Vista.rade_wrapper table td.rade_contentCell |
{ |
border: solid 1px #9db6c5; |
background: white; |
} |
controls the background color for the contant area, but in FF, my html background is actually shown the content area because the content background is either transparent or it inherits the background image from my html style, not the white background.
So by adding !important, this is fixed!
.radeditor.Vista.rade_wrapper table td.rade_contentCell |
{ |
border: solid 1px #9db6c5; |
background: white !important; |
} |