MyBB Community Forums

Full Version: Custom button css
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
as an example, let's say i want to add HTML..

css i added
.btn_search {

 background-color: green;}


html code
<button class="btn_search">test</button>

but the css is conflicting with the default mybb global.css button. what will be the proper css should i use?
Peharps with:
.btn_search {
   all: unset;
   background-color: green;
}
Note that your custom css must be the last loaded.
thank you so much!