I am trying to offer a couple of STYLES in the pull-down list for Unordered Lists. I can get other styles in the list, but cannot seem to have the ones I define for an unorder list show in styles pull-down.
I am using this code. The first two styles how in the styles pull-down list, the Unordered List style does not:
CKEDITOR.addStylesSet( 'bls_styles',
[
{ name : 'Body', element : 'p', attributes : { 'class' : 'body' } },
{ name : 'SectionHeading' , element : 'p', attributes : { 'class' : 'PageSectionHeading' } },
{ name : 'ListSquareGold' , element : 'ul', attributes : { 'class' : 'ListSquareGold' } }
]);
I believe the list needs to be "selected" before the style pull-down box will show that particular style. I have tried several way to select it, but I think the one most accurate (and perhaps the only way) is to click on the UL element in the "status bar" at bottom of editing window - but even when doing so - the style does not show in the pull-down window.
Any Ideas? Am I doing something wrong? Does CKEDIT not support styles on UL?
I am using this code. The first two styles how in the styles pull-down list, the Unordered List style does not:
CKEDITOR.addStylesSet( 'bls_styles',
[
{ name : 'Body', element : 'p', attributes : { 'class' : 'body' } },
{ name : 'SectionHeading' , element : 'p', attributes : { 'class' : 'PageSectionHeading' } },
{ name : 'ListSquareGold' , element : 'ul', attributes : { 'class' : 'ListSquareGold' } }
]);
I believe the list needs to be "selected" before the style pull-down box will show that particular style. I have tried several way to select it, but I think the one most accurate (and perhaps the only way) is to click on the UL element in the "status bar" at bottom of editing window - but even when doing so - the style does not show in the pull-down window.
Any Ideas? Am I doing something wrong? Does CKEDIT not support styles on UL?

Re: Add Style to Unordered List <UL>
If you download the "nightly build" there is now support for:
#1 - right clicking on List to set different types
#2 - support to add your own UL styles to "Styles" box.