woocommerce page

Hey,

Having an issue with the shop page. For some reason the page is going full width - and i dont think its due to the theme. any way to adjust that?

http://dev4.sparkcm.com/product/photo-package/

Hi James,

Your issue appears to be related to custom CSS you have added. The CSS in question is this:

#main-content .container {
    width: 100%;
    max-width: 100%;
    padding-top: 0px;
}
.container {
    padding-top: 0 !important;
}

If you’re using that CSS to make other pages full-width, you could use the following to prevent this from happening on your WooCommerce page(s).

.woocommerce #main-content .container {
    width: 100%;
    max-width: 1080px;
    padding-top: 140px !important;
}

Thanks,
Danny

Thanks!

No problem, James. Happy to help.

Thanks,
Danny