• Labelslikenew.com/cart

    I want to edit the font color and hover options for when you click “add to cart”. Currently everything turns white. I went to Appearance> Theme Options> Basic Styling but none of those edits changed that section.

    Also, how can I edit the font where it says “Peach Blouse – $19.99” on that same page?

    Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,
    Try this CSS code in your themes style.css file.
    This will change the text of the button to the color black.

    .product_item .kad_add_to_cart, .product_item a.button {
    color: black;
    }

    You can also use a child theme or a custom css plugin.

    Turns out I cannot fix the transition effect. My knowledge just does not go that far. Is there anything else you need?
    Thanks.

    hannah

    (@hannahritner)

    Hi Carla2016,
    1. Try pasting this in your custom css box in Theme Options > Advanced Settings:

    .product_item .kad_add_to_cart:hover, .product_item a.button:hover {
        color: #000;
    }

    2. This css should change the product title:

    .product_item:hover .product_details h5 a:hover {
        color: blue;
    }

    Hope that helps!

    Hannah

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Basic Styling/ Hover: Cart Page’ is closed to new replies.