UserThomas wrote:Also, how do I move everything that shows up in the right column over to the left? EX: category lists, sorting options, manufacturers list...
I also want to switch the product information with the picture. I want the picture on the left and info. on the right.
What do I need to change?
Hi,
Please use the following css in order to make your changes.
@media screen and (min-width: 1001px){
.product-details-page .overview {
margin-left: 620px;
margin-right: 0;
}
}
@media screen and (min-width: 769px){
.ui-tabs {
float: left
}
}
@media screen and (min-width: 769px){
.product-details-page .overview {
float: right;
}
}
.side-2 {float: left;}
.center-2 {float: right;}
Hope that helps!