Home › Forums › Jevelin Theme › Re arrange woocommerce product page
Home › Forums › Jevelin Theme › Re arrange woocommerce product page
Hi,
Sorry to post so much in such a short time, but it will soon be done, the end is close 🙂
How can I rearrange a woocommerce product page.
For example, http://www.worldofpixels.be/product/foto-op-hout/
You can see the picture left, and on the right side there is text and images. But they stay on the right side.
I would prefer a better view, for example no picture on the left and a full width page. Just like a “normal” page or a “blog”.
Can you please help ?
Kind regards,
Ben
Hi Ben,
I hope you are well today and thank you for your question.
You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.single-product .sh-woo-layout-left,
.single-product .sh-woo-layout-right {
width: 100%;
}
.single-product .woo-short-description div img {
clear: both;
}
If you do not want to display left side image then also use the below CSS code.
.single-product .sh-woo-layout-image {
display: none;
}
Best regards,
Shufflehound team
In combination, I can create something like this
.single-product.postid-8619Â .sh-woo-layout-left,
.single-product.postid-8619Â .sh-woo-layout-right,
.single-product.postid-8612Â .sh-woo-layout-left,
.single-product.postid-8612Â .sh-woo-layout-right,
.single-product.postid-8610Â .sh-woo-layout-left,
.single-product.postid-8610Â .sh-woo-layout-right,
.single-product.postid-8608Â .sh-woo-layout-left,
.single-product.postid-8608Â .sh-woo-layout-right,
.single-product.postid-8603Â .sh-woo-layout-left,
.single-product.postid-8603Â .sh-woo-layout-right,
.single-product.postid-8602Â .sh-woo-layout-left,
.single-product.postid-8602Â .sh-woo-layout-right,
.single-product.postid-8601Â .sh-woo-layout-left,
.single-product.postid-8601Â .sh-woo-layout-right,
.single-product.postid-8600Â .sh-woo-layout-left,
.single-product.postid-8600 .sh-woo-layout-right   {
width: 100%;
}
so the problem is solved, thanks !
You are most welcome here 🙂