php - Froala set text size in the beginning -
using froala text editor, how can set programatically initial size of text? it's blocked 28px , cannot modified simple option.
$('#editorasunto').editable({ // idioma tambiƩn cargando el es.js inlinemode: false, language: 'es', maxcharacters: 1000, placeholder: 'escribe el asunto del mensaje. hasta 1000 caracteres...', heightmin: 60, heightmax: 100, height: 60, buttons: ["bold", "italic", "underline", "strikethrough","sep" ,"fontfamily", "fontsize", "formatblock", "color","sep" ,"insertorderedlist", "insertunorderedlist", "outdent", "indent", "sep" ,"createlink", "inserthorizontalrule", "table","html"] });
the option fontsizedefaultselection: '14' doesn't trick.
$('#editorasunto').froalaeditor({ fontsizedefaultselection: '14' });
must change css froala styling in way? thanks.
Comments
Post a Comment