Okay
  Public Ticket #2893371
Change font color for checkout buttons
Closed

Comments

  •  2
    Luis started the conversation

    have the css to change the font color inside the buttons for cart and checkout

  •  2
    Luis replied

    image, change white text ti black 

  •  2,968
    Andrew replied

    Hello Luis,

    Try the following CSS.

    @media only screen and (max-width: 768px){
        .woocommerce-page table.cart a.remove {
            color: black !important;
        }
        .woocommerce .actions .button {
            color: black;
        }
        .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled]{
            color: black;
        }
    }
    

    Regards.

  •  2
    Luis replied

    do you also have the css for pc please

  •  1,884
    Judith replied

    Hi Luis,

    Please send in your website url so that we can provide css for it.

    Thanks.

  •  2
  •  2,968
    Andrew replied

    Hi Again,

    Try the following.

    .woocommerce-page table.cart a.remove:hover {
        color: black !important;
    }
    .woocommerce button.button, .woocommerce-page button.button, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled]{
        color: black !important;
    }
    

    Regards,