Elxis CMS Forum

Support => General => Topic started by: keithtwilson on February 20, 2012, 02:02:05

Title: wysiwyg font problem in Elxis 2009.2
Post by: keithtwilson on February 20, 2012, 02:02:05
I cannot get the font sizes to change to anything except 12 point when editing using my TinyMCE editor. I have looked at the bot setup for TinyMCE, and everything seems fine.

????
Title: Re: wysiwyg font problem in Elxis 2009.2
Post by: xmanhattan on February 20, 2012, 09:29:29
Hello keithtwilson,

Fonts are set through the css files and if you wish to set your own use the template_css.css file.  Search TinyMCE to see how others are doing it.

It is usually done something like this:
Code: [Select]
p.medium { font-family: tahoma, verdana, arial; font-size: 12px; }
p.large { font-family: tahoma, verdana, arial; font-size: 14px; }

Then look at the bottom of the styles listing for the newly added font styles.
Title: Re: wysiwyg font problem in Elxis 2009.2
Post by: keithtwilson on February 20, 2012, 14:24:37
Thanks .... appreciate the info. I'll give that a try!