I am new to modx, using built in TinyMCE editor to edit contents of webpages. But couldn’t able to find text formatting button for font-face, font size, font color etc. Is it possible to add those buttons?
Sandip
-
☆ A M B ☆
- 24,524 Posts
Well, it is, but it’s not recommended. It is recommended to use id’s and classnames in your HTML,
<p class="smallprint">...</p>
then style it in your CSS
.smallprint{
font-size: small;
color: #000066;
}
But, how to add those options in TinyMCE toolbar? It should be there. But I don’t know how to add those.
Sandip
Once you create the .css file and set TinyMCE to use it (in the Manager), the various styles should show up in the drop-down menu in TinyMCE.
Bob
I guess he is asking for the TinyMCE theme buttons, for this you need to do the following:
Goto Tools -> Configuration, select "Interface & Features", scroll down and locate "TinyMCE Settings". There you will find "Theme" drop down list. Select "Advanced" from the list and save the changes.
I hope this helps.