Can't change the background colors of my checkout page

Hello,

I can't change the background colors of my checkout page layouts in this theme. I've changed all the colors in the theme options and they don't appear. The buttons also don't appear with the green background they're supposed to.


PS. I've temporarily applied a blank layout because I don't know how else to solve it.


My website is: https://tabernadagata.com/

Comments

  • Hi,

    It can be edited with a custom CSS code.

    If you explain how exactly you want it to look, I can help you write that.


    Best regards

  • Yes, please!


    I'll put it in points then:

    - On both the Cart and Checkout pages I want the Background to be the same as the Home Page (as in the attached images);

    - I want the spaces where people fill in their contact information, both on the Cart and Checkout pages (email, address, etc.) to have a white background or at least the color of the text to be white so you can see what you're writing (right now it's gray and with the black background you can't read it, as shown in the attached image);

    - I want the buttons on the Cart and Checkout pages to have a green background (#5da649) with the letters in white.

    - Can you make the part marked in yellow have a background of another color, for example grey, so that it is clear that this is where the purchase information is?


    Thank you very much in advance!

  • Please use these codes:

    .woocommerce-cart .wc-block-cart-item__remove-link,
    .woocommerce-cart .wc-block-components-sidebar .components-button{
       background-color: #5da649!important;
       padding: 12px 22px!important;
       color: #fff!important;
    }
    .woocommerce-cart .wc-block-components-sidebar{
       background-color: #666;
       padding: 20px
    }
    .woocommerce-cart .wc-block-components-sidebar #wc-block-components-totals-shipping__change-address__link{
       white-space: break-spaces;
    }
    

    But I do not see this field:

    How to activate it?

    And your checkout page completely differs from what I see.

    Did you change that?


    Best regards

  • As I said earlier, I've temporarily applied a blank layout because I don't know how else to solve it. Because the website is online and people are accessing the store to buy the products.

    The screenshots I sent are from when the site was offline and people didn't know it was online.

    But I'll leave the links to the pages I mentioned here:

    Cart page: https://tabernadagata.com/carrinho/

    Checkout page: https://tabernadagata.com/checkout/

  • Ps. I've temporarily disabled the blank layout so you can make the changes using custom CSS.

  • Beyond what I sent you eariler, use these codes:

    .woocommerce-cart #wc-block-components-totals-coupon__input-0:focus{
     background-color: #fff!important;
    }
    .woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block{
        background-color: #666;
        padding: 20px;
    }
    .woocommerce-checkout input[type="text"]:focus{
        background-color: #fff!important;
    }
    

    Best regards

  • Thank you so much, it worked!

Sign In or Register to comment.