Fixing TinyMCE width for joomla 1.5
- July 13th, 2008
- Posted in Joomla
- Write comment
I was trying to fix the TinyMCE for joomla 1.5 in all ways. None worked. I even went into the core files and tried to change them. Finally I found the sloution by adding those lines to my template CSS
.mceToolbarTop * {
float:left;
}
.mceToolbarTop select {
width:auto!important;
}
.mceToolbarTop option {
float:none;
}
nice.. but the metadata textarea break the template.
I’m not sure how it breaks it, can you show me?
For me its working perfectly
hi i added these css and fix the problem..
textarea.inputbox{
width:auto!important;
}
thanks
thanks for the help ^^
I was very down to find this solution. even in big forums I did not get the answer. Thank you very much for this solution.
Thanks for all the tips, the last one worked a treat and has put hours of misery behind me now!