MyBB Community Forums

Full Version: edit quote (flatty)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to edit the css of the quote button after someone clicks on that button, but I can't find it anywhere on global.css

 Can someone help me?
a.postbit_multiquote_on is what you might have to use...

ex. to change its background:

a.postbit_multiquote_on {
    background: #1D1D1D!important;
}

PS: using !important might be a good idea so it overrides other css rules for that button..
Thanks, it worked!