Zdar!
Nazdar!
Skúšal som dnes experimentovať s tinymce a jedna z vecí, ktorá mi nešla sú tabuľky. Všetko možné funguje, ale tabuľky neviem rozchodiť.
Robil som to podĺa
http://www.tinymce.com/wiki.php/Plugin:table , len som zmenil tie triedy v css. Ale keď to mám takto, tak tiny vôbec nenabehne:
Kód:
<script language="javascript" type="text/javascript" src="./tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
theme : "advanced",
theme_advanced_buttons1 : "bold,|,italic,|,underline,|,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,forecolorpicker,|,removeformat,|,code",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
mode : "textareas",
language : 'sk',
style_formats : [
{title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
{title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
],
theme_advanced_blockformats : "p,div,h1,h2,h3,h4,h5,h6,blockquote,dt,dd,code,samp",
plugins : "table",
theme_advanced_buttons3_add : "tablecontrols",
table_styles : "tiny T=tinyT",
table_cell_styles : "tiny C=tinyC",
table_row_styles : "tiny R=tinyR",
table_cell_limit : 100,
table_row_limit : 5,
table_col_limit : 5,
skin : "o2k7",
skin_variant : "black"
});
</script>
To css
Kód:
.tinyT{border:5px solid red}
.tinyC{color:blue}
.tinyR{background-color:green}
Vie mi niekto poradiť, čo robím zle?
EDIT:
Ešte by ma zaujímalo, prečo vo FF nefunguje kvapkátko pri farbe písma.