Skip to content

Instantly share code, notes, and snippets.

@robflaherty
Created December 11, 2011 16:37
Show Gist options
  • Select an option

  • Save robflaherty/1461438 to your computer and use it in GitHub Desktop.

Select an option

Save robflaherty/1461438 to your computer and use it in GitHub Desktop.
WordPress fullscreen mode type enhancing bookmarklet
/*
* WordPress offers a wonderful minimalist fullscreen editing mode but the text is too small for my taste. You can use this bookmarklet
* to pump up the font-size and line-height to something more pleasurable.
*/
javascript:(function(){
var iframe = document.getElementById('wp_mce_fullscreen_ifr'),
tinymce = iframe.contentWindow.document.getElementById('tinymce');
tinymce.style.fontSize = '18px';
tinymce.style.lineHeight = '1.5';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment