<style type=”text/css”> <!– body,td,th { color: #FFFFFF; } a { font-size: 10px; color: #FFFFFF; } a:link { text-decoration: none; } a:visited { text-decoration: none; color: #FFFFFF; } a:hover { text-decoration: none; color: #CCCCCC; } a:active { text-decoration: none; color: #FFFFFF; } –> </style>
Daily Archives: November 5, 2008
Tiny MCE HTML editor Set Height / Width
<script language=”javascript” type=”text/javascript”> // Notice: The simple theme does not use all options some of them are limited to the advanced theme tinyMCE.init({ mode : “textareas”, height : “380”, width : “380”, theme : “advanced”, valid_elements : “a[href|target=_blank],b/strong,div[align],br,ol,li,ul,p,blockquote”, entity_encoding : “utf-8” }); </script>
Setup TinyMCE
<script language=”javascript” type=”text/javascript” src=”Scripts/editors/tiny_mce/tiny_mce.js”></script> <script language=”javascript” type=”text/javascript”> // Notice: The simple theme does not use all options some of them are limited to the advanced theme //tinyMCE.init({ // mode : “textareas”, //theme : “advanced”, //valid_elements : “a[href|target=_blank],b/strong,div[align],br,ol,li,ul,p,blockquote”, //entity_encoding : “utf-8” //}); tinyMCE.init({ mode : “textareas”, theme : “advanced”, entity_encoding : “utf-8”, content_css : “http://www.domain.gr/css/style.css”, entities …