Hello
Previously I didn't notice this issue. Today I installed Tinymce. When I tried to do test post, I found that cursor is at the top centre instread of on the left. Moreover, the background image at the top of box which is bg-body.gif is obstucting the top line of the post entry box.
My requests are:
1. How can I set cursor default left? ( I suspect Tinymce would have disturbed previous default setting)
2. How can I remove the background image of entry box?
Comments
Comment #1
rubinelli commentedI found the problem. (Thanks Firefox! Thanks Firebug inspector!) Tinymce's panel has a BODY tag that ends up inheriting the format from the theme's style.css. So to fix it I just edited line 15 in themes/aberdeen/style.css to make sure it only applies to the page's main BODY.
Before:
After:
Comment #2
rubinelli commentedOoops, right diagnostic, wrong (or incomplete) solution. The main body's class may also be sidebar-left or sidebar-right depending on how many sidebars you are using.
Comment #3
drupalinfo commentedOne solution (may not be a perfect one):
you could add this your /themes/aberdeen/styles.css file:
.mceContentBody {
font: 0.86em/1.5em Verdana, sans-serif;
color: #131313;
background: #fff ;
text-align: left;
}
I have removed the background image and aligned the text to left.
Comment #4
frankywi commentedHow can I do the same for the preview window?
its not .mcePreviewBody
Thank you!
Comment #5
ishmael-sanchez commentedHello,
I think this is a related/duplicate issue. Kindly review #127169: Problem when using tinymce.
The solutions listed here will work. Also you can try:
If the theme CSS is still getting into the editor double check your CSS specificity. Also, you can have tinymce use its default css and the tinymce editing area will be fine.
Comment #6
ishmael-sanchez commented