Hi I have a problem and I don’t know how to solve it.Some time ago you gave the code below the achieve a custom product layout.
@media (max-width: 2600px) and (min-width:1025px){
div.product-image-summary-inner, div.product-image-summary-wrap {
flex-wrap: wrap;}
div div.product-image-summary-inner>.col-sm-4 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%;
width: 100%;}
div div.product-image-summary-inner>.col-sm-8 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 90%;
width: 90%;
margin-top: 0px;
margin-bottom: 30px;
margin-left:40px;
}}
@media (max-width: 1024px) and (min-width:768px){
div.product-image-summary-inner, div.product-image-summary-wrap {
flex-wrap: wrap;}
div div.product-image-summary-inner>.col-sm-4 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%;
width: 100%;}
div div.product-image-summary-inner>.col-sm-8 {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%;
width: 100%;
margin-top: 20px;
margin-bottom: 30px;}}
@media(max-width:425px){
div div.product-image-summary-inner>.col-sm-8 {
/*-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%;
width: 100%;*/
margin-top: 0px;
margin-bottom:20px;}}
I want the 1024 res to be the same like 1025.Below 1024 I like it the way it is.
Regards