Topic Resolution: Resolved
  • Closed
  • Jon Green
    Spectator
    May 27, 2015 at 3:57 pm #17793

    When an item is added to the basket in our Woocommerce e-store (http://paulgreenhifi.co.uk/?post_type=product) the resulting message ‘….. added to your basket’ is white on white, yet the message when the item is removed is green text on white. Is there an area to adjust this as I cannot seem to find it.

    Also I’d like to change the font on our main catalogue page and adjust the way that the stock total appears. Its currently black on a yellow background that looks out of place. Can this be adjusted too?

    Thank you.

    Lukasz
    Spectator
    Posts: 45
    May 28, 2015 at 6:09 am #17798

    The text color you can change using CSS code:

    .woocommerce-message {
    color: #7E56BF !important;
    }

    You can change the background color and font color of stock using this code:

    .product .count {
    color: #EEE;
    background: transparent;
    }

    To disable displaying the stock use this code:

    .product .count {
    display: none;
    }

    Jon Green
    Spectator
    Posts: 11
    May 28, 2015 at 10:57 am #17802

    Perfect thank you!