The default configuration for the full toolbar for CKEditor includes a button for viewing the raw HTML source of the fource textarea of the editor. Unlike most of the toolbar options it has an icon and the wording "Source" next to the icon.
If possible I would like to display only the icon (leaving the "Source" tool tip intact for hover) and remove the word "Source". Initially I thought this would be a s simple as locating the plugin and altering the label but no such luck. I cant actually find a separate plugin folder for that option.
Is this something thats possible and if so whats the recomended approach?
If possible I would like to display only the icon (leaving the "Source" tool tip intact for hover) and remove the word "Source". Initially I thought this would be a s simple as locating the plugin and altering the label but no such luck. I cant actually find a separate plugin folder for that option.
Is this something thats possible and if so whats the recomended approach?

Re: Toolbar Question
Each label (.cke_label) is styled "display:none" by default. The source button is specifically overidden. You can reverse this by pulling the editor style sheet for the skin in use (Im currently using Kama and the default folder setups so its /CKEditor/skins/kama/editor.css) and looking for the line:
.cke_button_source .cke_label{display:inline;}.cke_skin_kama
Once its deleted when you reload the editor the View Source button will only display as an icon and not icon plus text "Source". Theres another similar reference in CKEditor/_source/skins/kama/editor.css b ut I dont think this is relevant to overidding the live version. Can anyone confirm that this was the proper way to handle this?
Re: Toolbar Question
and yes, changing the css rules is the way to go (at least for the moment maybe in the future there is some other option)