CSS not showing after saving changes to Child Theme

I can not get the changes I make to my child theme CSS to show on the front end.

Also is there a way to get the cart item number and total to show in the nav menu with out adding custom php code like I have done?

Hi @kodifletcher,

Thanks for writing in.

Please share us also your FTP so we could check the code your used and how you set up your child theme.

Don’t forget to set it in a secure note.

You might want to check the link below. The link shows on how to setup your child theme.

Hope it helps.

Thanks.

Thank you Nico. I have updated the secure note with the FTP information.

Hi,

The child theme style.css has lower priority so there could be other css that is overriding it.

Try adding body to each css code.

eg.

/* Change Woocommerce Quantity Buttons - Needs SMNTCS WooCommerce Quantity Buttons plugin Active*/
body input.minus {
    left: 35px !important;
    position: relative;
	background: #f1bd40;
    border: 1px solid #f1bd40;
    color: #FFF;
	height: 64px;
    width: 30px;
}
body input.plus {
    right: 35px !important;
    position: relative;
    background: #f1bd40;
    border: 1px solid #f1bd40;
    color: #FFF;
	height: 64px;
    width: 30px;
}
body input.input-text.qty.text {
    background: #f1bd40;
    color: #fff;
	text-align:center;
}
body form.woocommerce-cart-form input.input-text.qty.text {
    max-width: 82px;
    height: 66px;
}
body tr.woocommerce-cart-form__cart-item.cart_item .plus, tr.woocommerce-cart-form__cart-item.cart_item .minus {
    display: none;
}

/* End of Change Woocommerce Quantity Buttons - Needs SMNTCS WooCommerce Quantity Buttons plugin Active*/

body .woocommerce-product-gallery__wrapper .zoomImg{
	background-color:#fff;
}

body .widget {
    text-shadow: 0 1px 0 rgba(255,255,255,0);
}

Thank you! I will add the CSS in the Global CSS section. I understood that adding CSS to the child theme was the best place for it.

Thanks!

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.