Hello Ahmed,
Thanks for writing in!
This is the heirachical order of the CSS:
- Theme’s stack style
- Child theme’s style.css
- WordPress Additional CSS (Appearnce > Customizer > Additional CSS)
- Theme Options
- Theme Option’s custom css
- Cornerstone/Pro Editor’s custom CSS
Your code did not work because you added this:
//product page
.woocommerce div.product .summary {
float: none;
width: 100%;
}
The invalid comment is making the rest of the custom css invalid as well. You should have added this:
/* product page */
.woocommerce div.product .summary {
float: none;
width: 100%;
}
Hope this helps.