Quote:
Originally Posted by DWB
No, I mean IN the code. Not on the page itself when posting. I want to ADD buttons to it, to the actual admin.
Example, you see B there now. But what if I want to make it B and 2 font sizes larger, and red. Want to be able to add that to the admin buttons there. Without actually doing it in html.
|
I wouldn't bother editing the Wordpress core files. Makes it a pain when you have to upgrade, as these files get overwritten.
A better method would be to use this:-
http://wordpress.org/extend/plugins/addquicktag/
Then for the start tag add this:-
Code:
<span class="red-text">
And the end tag:-
Then go to your theme folder, open up style.css and add this class selector:-
Code:
.red-text {color:red;font-weight:bold;font-size:larger;}