Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    Can you link me to your site with that plugin active?

    Thread Starter slippers

    (@slippers)

    Hmm, I really don’t want to disclose my website here. I’ll send it to you by e-mail.

    Thanks

    Theme Author Tom

    (@edge22)

    Looks like that plugin is adding box-sizing: border-box to everything, which is bound to cause conflicts in some areas.

    You can counter it with this CSS:

    .inside-header {
        box-sizing: content-box;
    }

    Let me know ??

    Thread Starter slippers

    (@slippers)

    Well better to uninstall the plugin if it’s adding stuff and causing conflicts. Too bad though, it was very useful to me.

    Thanks again!

    Theme Author Tom

    (@edge22)

    No problem.

    If you didn’t notice any other conflicts then it should be safe to use, you just need to add that little snippet of CSS to your site ??

    Thread Starter slippers

    (@slippers)

    Yeah, just noticed another conflict. It also messes with the title links on the frontpage. Puts an underline on hover. ??

    Theme Author Tom

    (@edge22)

    Would be best if plugins like that only extracted the CSS needed for their plugin vs the entire bootstrap library.

    You should be able to counter it like this:

    a:hover {
        text-decoration: none;
    }
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Conflict with Bootstrap shortcodes’ is closed to new replies.