• Resolved Marzzz

    (@marzzz)


    The bar doesn’t show up properly in the cart and checkout page. It’s green when it should have a red background with white writing.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Morgan Hvidt

    (@morganhvidt)

    Hi @marzzz!

    The color settings in the plugin apply to the sitewide banner – the one at the very top of the page. It looks like you’re not using that banner on your site.

    When you display the countdown as a cart/checkout notice, it uses the WooCommerce styling from your theme. That’s to make it fit nicely with any theme.

    I just had a look at your site and you can use CSS to customise it. The below CSS changes your themes styling to suit what you are after ??

    body.gbt_classic_notif .woocommerce-error {
        background: red;
        color: white;
    }
    body.gbt_classic_notif .woocommerce-error:before {
        color: white; 
    }

    Would you consider leaving a review? They help a lot ??

    Thread Starter Marzzz

    (@marzzz)

    Thanks so much but the writing is still green?

    Thread Starter Marzzz

    (@marzzz)

    And I tried using the sitewide banner but it’s trapped under my menu bar if you’re on mobile.

    Plugin Author Morgan Hvidt

    (@morganhvidt)

    Try to use !important like below, it will force the color to change. It should do the trick ??

    body.gbt_classic_notif .woocommerce-error {
        background: red;
        color: white !important;
    }
    body.gbt_classic_notif .woocommerce-error:before {
        color: white !important; 
    }
    Thread Starter Marzzz

    (@marzzz)

    Works like a charm now! Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘The bar doesn’t show up properly’ is closed to new replies.