Hi Shewoof,
I think the problem could be with how your style sheets are attached.
If you have linked them manually in the head of your HTML templates like this:
Code: Select all
<head>
<title>Some Title</title>
<link href="_assets/css/example.css" rel="stylesheet" type="text/css" />
</head>
CMSMS and fckeditor don't recognize those styles.
To make them appear in fckeditor, you need to:
1. Add all the info from your style sheet into
Layout > Stylesheets from the admin area
2. Attach this style sheet to your template
Layout > Templates > Attach stylesheets
3. Remember to paste all your styles in the fckeditor toolbar styles pane
Extensions > fckeditorX then clickthe styles tab.
Can be long winded I know, especially when you like to keep your css defined in your HTML template.
You can use a smaller CSS file with just user classes and styles in, so anyone using the fckeditor only has access to specific styling. You just need to remember to update both css files.
Hope this makes sense. Any additional help or explanation feel free to ask.
PS Forgot to mention, if you don't have the
{stylesheet} tag in your HTML template, the style sheets attached within CMSMS won't be added to the page when it's rendered.