I am trying to get a transparent background for the content area of the editor in ie7. I have done the following:
1. Added a css file for the ContentAreaCSSFile and it contains:
2. I have also added this to the page just before the editor:
1. Added a css file for the ContentAreaCSSFile and it contains:
| body{background:transparent !important;} |
2. I have also added this to the page just before the editor:
| <style> |
| .radeditor.Default.rade_wrapper table td.rade_contentCell |
| { |
| border: solid 1px black; |
| background-color:Transparent !important; |
| } |
| body |
| { |
| background-color:Transparent !important; |
| } |
| </style> |
It seems that with this combination i get a transparent background in FF, but it just gives me a white background in ie7. If anyone has a suggestion that would be great. I'm using the newest version of the editor which doesn't seem t use iframes, so the allow transparency thing would not work as it has in the past for me.
What I am trying to accomplish is rendering the page and inserting the editor in editable areas. However I cannot figure a way to have the editor pick up on the parents style values.
