TinyMce change bullet from round to square

Questions about how to use the online - editors and suggestions how to improve them
Post Reply
Nicky
Posts: 164
Joined: Sun Feb 08, 2009 9:50 am
Location: Antwerp, Belgium

TinyMce change bullet from round to square

Post by Nicky » Thu May 09, 2013 3:32 pm

In fck editor you can right click and choose the bullet style.
How to do this is TinyMce?
If not possible, how can I make a 'square' bullet as default?

Holger
Site Admin
Posts: 3470
Joined: Mon May 19, 2008 7:10 pm
Location: Hessen, Germany

Re: TinyMce change bullet from round to square

Post by Holger » Fri May 10, 2013 7:43 am

Hi Nicky,

never mind, I've never noticed this option in FCKeditor...
Nicky wrote:If not possible, how can I make a 'square' bullet as default?
To change the default list-style just add

Code: Select all

ul {list-style-type: square;}
to the stylesheet.css of your template.

PS: I've checked it with CKEditor and the Option is still there...

Holger
Last edited by Holger on Fri May 10, 2013 8:02 am, edited 1 time in total.
Reason: Added PS

cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

Re: TinyMce change bullet from round to square

Post by cmb » Mon May 13, 2013 5:01 pm

Nicky wrote:In fck editor you can right click and choose the bullet style.
How to do this is TinyMce?
One can enable a dropdown menu to choose the desired bullet style by adding the "advlist" plugin to the list of plugins in tinyMCE's init_*.js, e.g.:

Code: Select all

    plugins : "autosave,pagebreak,style,layer,table,save,advimage,advlink,advhr,emotions,iespell,"
            + "insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,"
            + "noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,media,lists,advlist",
Christoph M. Becker – Plugins for CMSimple_XH

Post Reply