Home › Forums › WoodMart support forum › Need Help! › Reply To: Need Help!
March 9, 2023 at 3:44 pm
#449698
Aizaz Imtiaz Awan
Keymaster
Hello,
1- There is a standard padding left and right defined between the Banners on your Site right now according to the Width selected for both Columns.
So, if you want to reduce or remove that then please try using the below Custom CSS code and paste it to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section:
.vc_column-inner.vc_custom_1628606741414 {
padding-left: 0.2em !important;
padding-right: 0.2em !important;
}
.vc_column-inner.vc_custom_1628606737347 {
padding-left: 0.2em !important;
padding-right: 0.2em !important;
}
In the above CSS, you can modify the values according to your choice. But remember to have the values same in both these CSS classes.
2- To hide the Star Rating from the Products on the Grid, please try using the below Custom CSS code and paste it to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section:
.product-grid-item .wd-star-rating {
display: none !important;
}
Best Regards.