WP TinyMCE set custom font size in pixels
-
Hi, I’ve added a custom font-size in tinymce for admin like this:
function wwiz_mce_add_more_buttons($buttons) { $buttons[] = 'fontselect'; $buttons[] = 'fontsizeselect'; $buttons[] = 'cleanup'; $buttons[] = 'styleselect'; return $buttons; } add_filter("mce_buttons_3", "wwiz_mce_add_more_buttons");
Now I get default font-size drop down: 1(8pt), 2(10pt), 3(12pt) etc..
Is there a way to make it like: 11px(11px), 12px(12px), 14px(14px) etc.. ?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘WP TinyMCE set custom font size in pixels’ is closed to new replies.