css - text alignment ckeditor -
css - text alignment ckeditor -
i can't find how add together button format text:
text-align:center; text-align:left; text-align:right; text-align:justify;
i have v4 version
http://ckeditor.com/demo
i seek find solution find issue posts.
maybe using plugin ?
i'm using ckeditor forexemple:
<textarea id="monday" class="ckeditor" name="monday" ><?php echo $this->datas['monday']; ?></textarea>
thanks
you have add together justification configuration -- e.g.,
var config = { toolbar: [ ['font','fontsize'], ['bold','italic','underline'], ['textcolor','bgcolor'], ['justifyleft', 'justifycenter', 'justifyright'] ], }; $('.ckeditor').ckeditor(config);
css button ckeditor text-align
Comments
Post a Comment