MyBB Community Forums

Full Version: Multiquote Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am using Flatty theme and I would like to make the multiquote postbit button toggle an on and off image like the button does here on MyBB.com.  What do I need to do to make this happen?
Anyone?  I searched but I can't come up with anything!   Angel
Add this to your theme global.css:
.postbit_buttons > a.postbit_multiquote_on:link,
.postbit_buttons > a.postbit_multiquote_on:visited,
.postbit_buttons > a.postbit_multiquote_on:active {
    color:red;
    border-color:red;
}
(2017-02-24, 06:18 PM)SvePu Wrote: [ -> ]Add this to your theme global.css:
.postbit_buttons > a.postbit_multiquote_on:link,
.postbit_buttons > a.postbit_multiquote_on:visited,
.postbit_buttons > a.postbit_multiquote_on:active {
    color:red;
    border-color:red;
}

Sven, you are a genius!!  Thanks!!

Do you have time for one more little fix for me?  See here:

https://community.mybb.com/thread-208449.html
I've developed that code on a local installation with Flatty theme.

EDIT:

Set it as important - than the code has a higher priority.
.postbit_buttons > a.postbit_multiquote_on:link,
.postbit_buttons > a.postbit_multiquote_on:visited,
.postbit_buttons > a.postbit_multiquote_on:active {
   color:red !important;
   border-color:red !important;;
}
It worked...I am on Cloudfare and the purge didn't take at first!!!!


Sven, you are a genius!!  Thanks!!

Do you have time for one more little fix for me?  See here:

https://community.mybb.com/thread-208449.html
(2017-02-24, 10:09 PM)RocketFoot Wrote: [ -> ]It worked...I am on Cloudfare and the purge didn't take at first!!!!


Sven, you are a genius!!  Thanks!!

Do you have time for one more little fix for me?  See here:

https://community.mybb.com/thread-208449.html
I take a look Wink
@SvePu

I just upgraded to 1.8.13 and the multiquote toggle color stopped working, any ideas on how to fix?