Hi,
I am trying to add a style to the FCKEditor style drop down for an unordered list under fckstyles.xml - the class works fine on any other element (such as a span, div, or p) but for some reason it won't show up if I try to assign it to an unordered list:
<Style name="Ticks" element="ul">
<Attribute name="class" value="ticks"/>
</Style>
Doesn't work
<Style name="Ticks" element="span">
<Attribute name="class" value="ticks"/>
</Style>
Does work
Are you able to shed any light on this?
I also tried to add it via fckconfig.js, and got the same result.