Since the latest woocommerce update the Single Product page sidebar appearing below page content. See link below.
Any help to resolve this would be most appreciated.
Since the latest woocommerce update the Single Product page sidebar appearing below page content. See link below.
Any help to resolve this would be most appreciated.
Hey @spacebunyip,
You have this code added to the Global CSS that is pushing the content width too 100% that is why the sidebar is below it:
.woocommerce .x-main {
width: 100%;
}
You could either remove or update that code to:
.woocommerce:not(.single-product) .x-main {
width: 100%;
}
Hope this helps.
Perfect, thanks for you help.
You are most welcome. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.