Title: Unneeded CSS
Last modified: August 21, 2016

---

# Unneeded CSS

 *  Resolved [kingcodefish](https://wordpress.org/support/users/kingcodefish/)
 * (@kingcodefish)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/unneeded-css/)
 * The Amen plugin makes disabled plugins have a red bar on the bottom.
    I figured
   out that removing the following CSS fixes the problem:
 *     ```
       div.inactive { background: rgb(192, 115, 111) !important; }
       div.inactivealt { background: #C0736F !important; }
       ```
   
 * This is located in the amen.css file in the plugin editor.
    I don’t know why 
   the !important doesn’t work but removing the code fixes the problem anyways. 
   I didn’t see a need for this so I just took it out. Hope this helps for anyone
   having a red bar underneath their disabled plugins.
 * [http://wordpress.org/extend/plugins/amen/](http://wordpress.org/extend/plugins/amen/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [uamv](https://wordpress.org/support/users/uamv/)
 * (@uamv)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/unneeded-css/#post-3677203)
 * Interesting, i hadn’t noticed that. Some of the code from this plugin (including
   some css) was transferred from another plugin. i’ll check this out and correct
   it. Thanks for pointing it out!
 *  Thread Starter [kingcodefish](https://wordpress.org/support/users/kingcodefish/)
 * (@kingcodefish)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/unneeded-css/#post-3677205)
 * Your Welcome. It was kind of annoying me.
 *  Thread Starter [kingcodefish](https://wordpress.org/support/users/kingcodefish/)
 * (@kingcodefish)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/unneeded-css/#post-3677219)
 * I just noticed something since it says !important (which means not important)
   it says any other CSS applying to this later will not work.
    So it just simply
   ignores anything else and uses the RGB and HEX colors for supporting browsers.
   So just like I said take it out and you should be fine.
 *  Plugin Author [uamv](https://wordpress.org/support/users/uamv/)
 * (@uamv)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/unneeded-css/#post-3677245)
 * Fixed this in 2.0.5
 *  Thread Starter [kingcodefish](https://wordpress.org/support/users/kingcodefish/)
 * (@kingcodefish)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/unneeded-css/#post-3677248)
 * See you changed:
 *     ```
       div.inactive { background: rgb(192, 115, 111) !important; }
       div.inactivealt { background: #C0736F !important; }
       ```
   
 * With:
 *     ```
       div.amen-inactive { background: rgb(192, 115, 111) !important; }
       div.amen-inactivealt { background: #C0736F !important; }
       ```
   
 * And changed some other features in the code.
    But it worked, Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Unneeded CSS’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/amen_f3f3f3.svg)
 * [Amen](https://wordpress.org/plugins/amen/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/amen/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/amen/)
 * [Active Topics](https://wordpress.org/support/plugin/amen/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/amen/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/amen/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)

 * 5 replies
 * 2 participants
 * Last reply from: [kingcodefish](https://wordpress.org/support/users/kingcodefish/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/unneeded-css/#post-3677248)
 * Status: resolved