Site logo

Archived topic

Design Issues in Website

3 replies · Started by Praveen on August 10, 2021

Viewing posts 1–4 of 4

Hi guys,

facing 2 issues with my website (link below)

1) I want to remove the pricing just below the Product Heading. any ideas ?
2) The weight box of 500g is cut from the left, not sure what is causing it!

Also, is there an in built way to enable delivery day and time slots to which a user can choose?

Hi there,

1. Add this PHP Snippet:

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );

How to add PHP: https://docs.generatepress.com/article/adding-php/

2. Try adding this CSS:

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0,0.3);
}

It worked! thanks.

The gap between the H1 and text is very small, any way to increase it?

Try this CSS:

.woocommerce div.product .product_title {
    margin-bottom: 1.5em;
}
This archived topic is closed to new replies.