Site logo

Archived topic

CSS Problems with the Woocommerce Seller Template on the Cart Page

9 replies · Started by Frank Noack on January 17, 2020

Viewing posts 1–10 of 10

hey
CSS
.woocommerce .coupon .button {
color: #000;
background-color: #fff;
}

.woocommerce button.button:hover{
color: #000;
background-color: #fff;
}

Hi there,

Can you try the button colors options in the Customizer > Colors > WooCommerce and see if that works for you?

Let me know :)

Hi there - thanks for the video!

It looks like your cart is a little too wide for the amount of space it has.

You can:

a) Reduce the font size of your headings:

.woocommerce table.shop_table th {
    font-size: 14px;
}

b) Remove the sidebar on your cart and checkout.

As for the button, that's the "disabled" state (so it can't be clicked). Doesn't look very good, we're going to have to improve that in the next version.

For now, try this:

body.woocommerce button.button:disabled, 
.woocommerce button.button:disabled[disabled] {
    opacity: 1;
    color: #fff;
}

Let me know if that helps or not :)

To fix that, go into "Customize > Additional CSS" and remove this CSS:

.woocommerce-cart table.cart input {
	line-height: initial;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
	width: 175px;
	padding: 9px 15px;
	box-sizing: border-box;
}

Then add this CSS:

.woocommerce .coupon .button {
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
}

Thanks a lot Tom
the problems are solved.

Best regards from Germany
Frank

Glad I could help :)

This archived topic is closed to new replies.