Created
July 12, 2012 15:05
-
-
Save brisbanewebdeveloper/3098691 to your computer and use it in GitHub Desktop.
How to prevent font size to being small in WYSIWYG editor when raw mode for Joomla 2.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Reference: http://forum.joomla.org/viewtopic.php?f=579&t=707778#p2806094 | |
| 1. Create a new template by copying bluestork. | |
| 2. Open libraries/joomla/installer/adapters/template.php and comment out lines 543 and 558 | |
| // $lang->setDebug($debug); | |
| // $debug = $lang->setDebug(false); | |
| 3. Discover and install the template. | |
| 4. Un-comment those lines back. | |
| 5. Add this after the style for textarea (around line 122): | |
| /* Hack - Hiro - Start */ | |
| textarea.wfEditor, | |
| textarea.wfNoEditor { | |
| font-size: 13px; | |
| } | |
| ul.adminformlist span.spacer { | |
| border-bottom: 1px solid #ccc; | |
| clear: both; | |
| display: block; | |
| margin-bottom: 4px; | |
| padding-top: 8px; | |
| } | |
| /* Hack - Hiro - End */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment