Getting the TinyMCE 4 Font Sizes drop down to set the font size in px instead of pt

Steve picture Steve · Jan 25, 2015 · Viewed 10.7k times · Source

Does anyone see a way to make the TinyMCE 4 Font Sizes drop down offer font sizes in px instead of pt?

TinyMCE Font Sizes

Thanks

Answer

nemesv picture nemesv · Feb 1, 2015

You need to use the fontsize_formats option where you can also change the unit of the values of the font sizes dropdown:

tinymce.init({
    selector: 'textarea',
    toolbar: 'fontsizeselect',
    fontsize_formats: "8px 10px 12px 14px 18px 24px 36px"
});

Demo JSFiddle.