remedes de grand mere
asked 10 years ago

Hi
I’ve integrate DW Q&R, all it’s ok but only one bug appears (see attached jpg)
How can i resize tiny mce editor ? or delete some tools (html, link etc…) for reduce the width ?
many thanks
Phil

1 Answers
DominicStaff
answered 10 years ago

Hi Remedes,
To remove some features in the TinyMCE Editor. Please add the following code to the end of the style.css file in your theme folder:

/* Link*/
.mceIcon.mce_link {
   display: none !important;
}

/*Unlink*/
.mceIcon.mce_unlink {
    display: none !important;
}

/*HTML*/
.mceIcon.mce_code {
   display: none !important;
}

/*B*/
.mceIcon.mce_bold {
   display: none !important;
}

/* I */
.mceIcon.mce_italic {
   display: none!important;
}

/* U */
.mceIcon.mce_underline {
    display: none !important;
}

/*Unordered list*/
.mceIcon.mce_bullist {
    display: none !important;
}

/*Ordered list*/
.mceIcon.mce_numlist {
    display: none !important;
}

/*blockquote*/
.mceIcon.mce_blockquote {
   display: none !important;
}

/*Insert/edit image*/
.mceIcon.mce_image {
   display: none !important;
}

Hope this helps!

Powered by DW Question & Answer Pro