It looks like you are trying to add all the other buttons, but do you have the images for them? If you look at the sprint.png file here, I don't think it has the images you need -
https://www.vbulletin.com/forum/imag...tor/sprite.png That is the default that comes with vbulletin. I think you will need to get another sprite file that has the additional images.
Actually, I tried this. The problem is all the buttons are using this CSS as default:
HTML Code:
.cke_skin_kama span:not(.cke_browser_ie) .cke_button .cke_icon { background: url("images/editor/sprite.png") no-repeat scroll left top transparent;}
And it is overriding this (which I think is incorrect also):
HTML Code:
.cke_skin_kama .cke_button .cke_icon { background-image: url("icons.png"); background-position: 100px 50%; background-repeat: no-repeat; cursor: default;
... }
To fix, you need to edit the clientscript/ckeditor/skins/kama/editor.css file to not exclude the icons.css file. Then you need to edit the icons.css file and do a find replace of ".cke_skin_kama" and replace with ".cke_skin_kama span:not(.cke_browser_ie)" and also add a background image for all the icons of "background-image: url("icons.png");". Save. Upload. That will also replace all the images that vb had made for the editor, but I didn't feel like going through the icons.css file and finding the vb made ones and deleting them from the file.