Woocommerce layouts - single product section width

When working on a WC single layout the width of a section is limited - it doesn’t go out to the full width of the screen. This is not the case for sections when working on layouts for regular single posts.
Is this an oversight or bug? And how do you recommend I fix it?

UPDATE: Seems like it is related to
[class*=woocommerce] .entry-wrap {
padding:60px;
}
From the Integrity style. But this seems like a bug or an oversight at least.

Hi @spedney,

Thanks for reaching out.
The Single Product use the Default template which have the entry-wrapper with the padding value 60px.

You can override that by adding the following custom CSS code to Theme Options > CSS.

[class*=woocommerce] .entry-wrap 
{
    padding:0px !important;
}

Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.

Thanks

1 Like

Thank you for your VERY quick reply! :slight_smile:

Hi @spedney,

Glad that we are able to help you.

Thanks

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