/* * Example styles for use in the visual editor. * * Two types of styles can be defined here: general styles to make the editor look * more like the theme and CSS classes that can be selected by the user. * * @package TinyMCE Kit * * Released under the GPL v.2, http://www.gnu.org/copyleft/gpl.html * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ /** * Example of general styles for the editor * * If you're styling the image caption, in the editor it's in * structure. */ html .mceContentBody { font: 12px/20px Tahoma, sans-serif; } img { margin: 5px 10px; } p { margin: 0.5em 0 1.5em; } h1 { } h2 { } h3 { } /** * Example of styles that will be selectable by the user. * * The class names have to match the $classes array in tinymce-kit.php * and the styles must also be defined in your theme. * * These classes are applied either to the

tag if the whole patagraph is selected * or to a tag if only some text is selected. For best results they have * to contain only "inline" styling, like color, font, text-decoration, etc. */ .bigger { font-size: 16px; } .smaller { font-size: 11px; } .pull-right {float: right; color: green;} span.pull-right {display: block;}