• Resolved mantum

    (@mantum)


    The text in the popup for the cart in menu is white, image

    The text is definitely there, because I can highlight it, image

    Same thing when I add a product to cart, the product title and ‘subtotal’ texts are white, image

    But the text for product is blue when hovered over, image

    This happens on all pages. I posted this issue previously and I got a working CSS code, however, it only worked on certain pages, could someone please write me CSS that solves this issue on all pages of the site? Thank you ??

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @mantum!

    You can use the followig CSS to resolve this issue:

    .ast-site-header-cart .widget_shopping_cart .cart_list a, .woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a {
        color: black;
    }

    Remember to replace the color “black” with your own preferred color and to add the CSS code to the “Additional CSS” section found in your customizer.

    Cheers!

    Thread Starter mantum

    (@mantum)

    Thanks that worked for the product title but the message when nothing is in the cart still appears white and also the text “subtotal” is white

    Thread Starter mantum

    (@mantum)

    Actually I think I fixed it:

    .ast-site-header-cart .widget_shopping_cart .cart_list a, .woocommerce .ast-site-header-cart .widget_shopping_cart .cart_list a {
    		font-weight: 800;
        color: blue;
    }
    
    .ast-site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message {
    		color:black;
    		font-weight: 800;
    }
    
    .woocommerce .widget_shopping_cart .total strong, .woocommerce.widget_shopping_cart .total strong {
        min-width: 40px;
        display: inline-block;
        color: black;
    }

    Let me know if there’s any errors in that code, but it seems to be working.

    • This reply was modified 4 years ago by mantum. Reason: code block
    • This reply was modified 4 years ago by mantum.
    Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @mantum!

    CSS looks good to me.

    Can you confirm it is now working and resolves your issue?

    Cheers!

    Thread Starter mantum

    (@mantum)

    yep it seems to be working perfectly, thanks for your help ??

    • This reply was modified 4 years ago by mantum.
    Plugin Support Stuart Duff – a11n

    (@stuartduff)

    Automattic Happiness Engineer

    Hey @mantum,

    That’s fantastic it’s working for you know. We’ll mark this topic as resolved and if you require any assistance in the future please open a new forum topic.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Cart in Menu’s Text is White’ is closed to new replies.