• Resolved mer

    (@merettekuijt)


    Good morning,

    In my shop page, the amount of products to be added to the shopping cart shows in white. Due to the white background, this makes the amount of products you are adding not visible. How can I adjust the amount of products to black with CSS.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @mer, here’s the offending CSS:

    body, button, input, select, textarea {
        color: #fff;
        font-family: Karla, sans-serif;
        font-size: 16px;
        line-height: 1.5;
    }

    It looks like it’s making a lot of things white that won’t work with your white background, honestly. If it were my site I’d consider countering the white with this CSS:

    body, input, select, textarea {
        color: #7a7a7a;
    }

    I left Button out since those have different background colors. You could take out other selectors too.

    Or, if you want to specifically targets inputs only, and only within Woo, use this:

    .woocommerce input {
        color: #7a7a7a;
    }

    Hoping this helps!

    Thread Starter mer

    (@merettekuijt)

    This helped tons. Thank you so much.

    • This reply was modified 11 months, 3 weeks ago by mer.

    Cheers @merettekuijt and I’m glad you were able to resolve your other question too. Take care!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Product amount shows in white’ is closed to new replies.