This topic has 6 replies, 2 voices, and was last updated 7 years, 6 months ago ago by Olga Barlow
Hi,I have a question. I want to change single product layout to 5/4 for content and images. So how i can change it.
Many thanks.
Photo capture.
https://lh3.googleusercontent.com/oauxilpzgGGLKX90K6Hxpk1TjepmJ2HuCQMhv9oGGNs-qwGewodajejDE1ZezHovets6jk29lzorHKk=w1920-h950-rw
Hello,
Unfortunately, I can’t check the screenshot, link is broken. All the available layout types yu can find in Theme Options > E-Commerce > Single Product Page.
If you just want to change the width of the image and description containers you may try the following code (Theme Options > Styling > Custom CSS)
.single-product-default .product-images {
width: 40%;
}
.single-product-default .product-information {
width: 60%;
}
Regards
THanks, it worked in desktop screen but i dont like it in mobile version. my demo website http://donghothanhtung.com/san-pham/fc-312v4s4/
So pls fĩx it for me in mobile
Hello,
Then replace that code by the following
@media only screen and (min-width: 992px){
.single-product-default .product-images {
width: 60%;
}
.single-product-default .product-information {
width: 40%;
}
}
Regards
Hi, thanks for reply but it doesn’t work for me on mobile. You can check again, http://donghothanhtung.com/san-pham/fc-312v4s4/
Hello,
Please, make sure that you copied whole the code and did not miss close or opened { }
Regards
You must be logged in to reply to this topic.Log in/Sign up