MyBB Community Forums

Full Version: How to style your buttons Manually on MyBB 1.8
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I bought a premium MyBB theme but I dont quite like the view of the buttons on the theme

I know a lot of HTML,CSS,Js and PHP and I can easily create the buttons myself but I dont understand where the stylesheets are.
what button you want to change,
is it image buttons or css bottuns?
(2016-06-28, 03:07 PM)tphe1234 Wrote: [ -> ]what button you want to change,
is it image buttons or css bottuns?

All Of MyBB buttons like the ones down below to Post,Reply,Quote etc
can you give me your forum URL?
A typical MyBB button looks like this:

<input type="submit" class="button" value="{$lang->post_event}" />

To change buttons all you have to do is add the desired new button class to global.css

If you want to add font awesome to mybb buttons, replace input with button like this:

<button type="submit" class="button" /><i class="fa fa-user"></i>&nbsp;{$lang->post_event}</button>