[Support request] Tab Responsive Plugin

Home Forums Support [Support request] Tab Responsive Plugin

Home Forums Support Tab Responsive Plugin

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #658205
    Brett

    I have added a plugin called… Tab Responsive. The plugin is loading after our child stylesheet is loaded. The problem is that the plugin has applied “!important” styles which means our “!important” style changes aren’t being seen.

    Do you have any tricks to get around this issue?

    Thanks!

    #658266
    Leo
    Staff
    Customer Support

    Hi there,

    You just have to use the selector that’s more specific than the selector they are using plus important.

    For example if we want to overwrite:

    .inside-header {
        padding: 10px !important;
    }

    Then we can do something like:

    body .inside-header {
        padding: 10px !important;
    }

    You can also ask the plugin author to provide you the correct CSS.

    Let me know if this helps 🙂

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.