Hello,
Does anyone know how I can add text into the toolbar? I would like to add some text to one of the buttons just like how the button for "Source" has the small icon, but also has the word "Source" beside it to describe what that button does.
Basically none of my test users knows that the little mountain icon is used insert an image. Because of this, I would like to either replace that icon with the words "upload image" or I'd like to keep that little mountain icon, and have the words "upload image" beside it, to help people understand that's the icon for images.
I've been searching everywhere but can't seem to find what I'm looking for.
Thanks!
Does anyone know how I can add text into the toolbar? I would like to add some text to one of the buttons just like how the button for "Source" has the small icon, but also has the word "Source" beside it to describe what that button does.
Basically none of my test users knows that the little mountain icon is used insert an image. Because of this, I would like to either replace that icon with the words "upload image" or I'd like to keep that little mountain icon, and have the words "upload image" beside it, to help people understand that's the icon for images.
I've been searching everywhere but can't seem to find what I'm looking for.
Thanks!
Re: How to modify Toolbar Icon to show Text
to show text of button_image:
.cke_skin_v2 .cke_button_image .cke_label{display:inline;display:inline-block;}
to show text of button_link:
cke_skin_v2 .cke_button_link .cke_label{display:inline;display:inline-block;}
to show text of button_fields (my extra plugin):
cke_skin_v2 .cke_button_Fields .cke_label{display:inline;display:inline-block;}
You have to know what is the css class name of the button. I get this using Firebug
Re: How to modify Toolbar Icon to show Text
Thank you fabio.perrella!
I'll give that a try and post back here on my results