I have FCKEditor set up on my Drupal site. It's working fine, but I'm having problems styling the text that appears in the FCKEditor frame.
For example, at the moment every paragraph on my site has a top and bottom margin of 10px. This is achieved by the CSS line:
The .content style is applied to each piece of content on my site. However, it's not applied to the FCKEditor frame, so the margin isn't added to paragraphs displayed in the frame.
I've tried styling the text that appears in the editor frame, but I just can't get it to take. What path should I be using? According to Firebug, a paragraph in the editor frame has the following path:
So I would have thought that the following CSS:
Would have done the trick, but it doesn't. Help!
For example, at the moment every paragraph on my site has a top and bottom margin of 10px. This is achieved by the CSS line:
.content p { margin: 10px 0; }
The .content style is applied to each piece of content on my site. However, it's not applied to the FCKEditor frame, so the margin isn't added to paragraphs displayed in the frame.
I've tried styling the text that appears in the editor frame, but I just can't get it to take. What path should I be using? According to Firebug, a paragraph in the editor frame has the following path:
... td#xEditingArea > iframe >html > body > p
So I would have thought that the following CSS:
iframe p { margin: 10px 0; }
Would have done the trick, but it doesn't. Help!