I have included the code below in my fckstyles.xml file but the styles do not show up
Is there any way to have a style for lists?
<Style name="bullet small" element="ul"> <Attribute name="class" value="f_bullet-s" /> </Style> <Style name="bullet x-small" element="ul"> <Attribute name="class" value="f_bullet-xs" /> </Style> <Style name="bullet xx-small" element="ul"> <Attribute name="class" value="f_bullet-xxs" /> </Style> <Style name="list small" element="ol"> <Attribute name="class" value="f_list-s" /> </Style> <Style name="list x-small" element="ol"> <Attribute name="class" value="f_list-xs" /> </Style> <Style name="list xx-small" element="ol"> <Attribute name="class" value="f_list-xxs" /> </Style>
Is there any way to have a style for lists?
Re: How can I style a OL or UL with fckstyles.xml
By default the CSS file is configured in this line of the fckconfig.js file.
FCKConfig.EditorAreaCSS = FCKConfig.BasePath + 'css/fck_editorarea.css' ;
Re: How can I style a OL or UL with fckstyles.xml
Re: How can I style a OL or UL with fckstyles.xml
I have already done that. I wanted to use the style selector to apply my class and id definitions from my sites css by defining a <Style> entity in fckstyles.xml
Thanks. I figured that was the case but I wanted to make sure I wasn't doing something wrong.