Okay
  Public Ticket #167648
WooCommerce Checkout Bars
Closed

Comments

  •  2
    Ed started the conversation

    How can I remove these massive background bars on top of the Woocommerce checkout and cart pages?

     

    Screenshot: http://www.clipular.com/c/5161977856917504.png?k=wHEKUfZDENIPffqofTlOmZ8LfdM

  •  1,069
    ThemeNectar replied

    Hey Ed,

    add this into the Custom CSS box located in your Salient Options panel:

    .woocommerce-message {
      display: none!important;
    }

     

  •  2
    Ed replied

    Hi, thanks for this but it didn't work and I wasn't asking to display:none, I just wanted the bars gone.

    After trying for a good 30 minutes, I finally was able to change the color. Hate using !important but oh well.

    .woocommerce-info {
      background-color: #aaa !important;
    }
    .woocommerce-message {
      background-color: #aaa !important;
    }

    THANKS!