(New page: == FontSizes == This option lists the font sizes which appear in the "Size" menu. <pre>FCKConfig.FontSizes= 'smaller;larger;xx-small;x-small;small;medium;large;x-large;xx-large' ; </...) |
|||
Line 1: | Line 1: | ||
− | + | This option lists the font sizes which appear in the "Size" toobar combo. By default, the following values are available: | |
− | + | <pre>FCKConfig.FontSizes = 'smaller;larger;xx-small;x-small;small;medium;large;x-large;xx-large' ; | |
− | This option lists the font sizes which appear in the "Size" | + | </pre> |
− | <pre>FCKConfig.FontSizes= 'smaller;larger;xx-small;x-small;small;medium;large;x-large;xx-large' ; | + | You may use any valid CSS compatible value for it. The following example set pixel, relative and percent sizes: |
+ | <pre>FCKConfig.FontSizes = '14px;1.5em;80%' ; | ||
+ | </pre> | ||
+ | A name can also be set for each size, which is displayed in the combo instead of the raw size value. Just separate the size and the name with a slash. For example: | ||
+ | <pre>FCKConfig.FontSizes = '14px/Fourteen Pixels;1.5em/A bit biggger;80%/A bit smaller' ; | ||
</pre> | </pre> |
Latest revision as of 11:18, 20 May 2008
This option lists the font sizes which appear in the "Size" toobar combo. By default, the following values are available:
FCKConfig.FontSizes = 'smaller;larger;xx-small;x-small;small;medium;large;x-large;xx-large' ;
You may use any valid CSS compatible value for it. The following example set pixel, relative and percent sizes:
FCKConfig.FontSizes = '14px;1.5em;80%' ;
A name can also be set for each size, which is displayed in the combo instead of the raw size value. Just separate the size and the name with a slash. For example:
FCKConfig.FontSizes = '14px/Fourteen Pixels;1.5em/A bit biggger;80%/A bit smaller' ;