• Resolved kkardi

    (@kkardi)


    Every time I click the add to cart buttons the screen goes grey. Is there a way to remove that?

    Any help is appreciated (:

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • The following element is causing this.
    This is not a WooCommerce element so either your theme/some other plugin is causing the grey overlay to be visible after adding an item to your cart.

    <div class="owp-cart-overlay" style="display: block;"></div>

    Thread Starter kkardi

    (@kkardi)

    Any idea how I can find that line and remove it?

    Add a custom css style to override it or deactivate the related plugin if the the plugin has no importance

    .owp-cart-overlay {
    display: none !IMPORTANT;
    }

    I don’t highly recommend using !IMPORTANT to over ride in css, but since the code is an inline style, you may need it to override it.

    Actually, I think .owp-cart-overlay is a style from your master theme css

    Are you using Ocean WP Free WordPress Theme? It looks like the code is also from there

    https://wordpress.org/themes/oceanwp/ You may need to try contacting the theme forum, it is not WooCommerce related

    Thread Starter kkardi

    (@kkardi)

    Thank you everyone for your help! Much appreciated

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘When user clicks Add to cart the screen goes grey? Why’ is closed to new replies.