I am making a Responsive site using the foundation framework and TinyMCE breaks the format when the page is scaled down(it’s not responsive). How do I make TinyMCE responsive?
I am making a Responsive site using the foundation framework and TinyMCE breaks the
Share
The TinyMCE editor can be made responsive by using css media queries. Simply add css rules that set the width property of
table.mceLayoutand the tinyMCE textareas. You will need to enforce these css rules using!importantbecause they would otherwise be overwritten.E.g., I use css similar to this:
See this jsfiddle: http://jsfiddle.net/johannesjh/384uf/
Note: You may wish to use different media queries or css classes to make use to the “foundation framework”‘s responsive grid.