[Resolved] "Refresh cart" button style

Home Forums Support [Resolved] "Refresh cart" button style

Home Forums Support "Refresh cart" button style

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1051149
    trigerty

    I would like to change the style of ‘refresh cart’ button and text + hover, but for some reason can not find appropriate setting in customization. Seems like this button has it’s on css which a can’t reach through gp customizer. I have no Elementor installed. How to change this button and its text?
    button i try to customize (russian)

    #1051471
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Give this a shot:

    .woocommerce .actions button.button[name=update_cart] {
        background: red;
        color: white;
    }

    Let me know ๐Ÿ™‚

    #1051552
    trigerty

    it worked! Looks like some transparent setting from another background block makes this buttons red color to be transparent both before and after hover, so it looks almost like pink. How to set hover style for this button and turn this transparency off?

    #1051671
    Tom
    Lead Developer
    Lead Developer

    To adjust the transparency, add this:

    .woocommerce button.button:disabled, 
    .woocommerce button.button:disabled[disabled] {
        opacity: 1;
    }

    For the hover, try this:

    .woocommerce .actions button.button[name=update_cart]:hover {
        background: red;
        color: white;
    }
    #1051793
    trigerty

    Works fine now. Thank you. Consider this topic resolved.

    #1052136
    Tom
    Lead Developer
    Lead Developer

    No problem! ๐Ÿ™‚

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.