This topic has 2 replies, 2 voices, and was last updated 5 years, 5 months ago ago by Olga Barlow
Hi there. At mobile single product page all the content sticks to the left. How can I edit the width and also make them centered.
Hello,
There is no special option to edit the with of the single product container for the mobile or align it. You can do this using custom CSS if you have the CSS skills. For example, add the following code to Theme Options > Custom CSS
@media only screen and (max-width:768px){
.product-information-inner {
text-align: center;
}
.product-share, .share-post {
justify-content: center;
}
div.quantity {
margin-bottom: 0;
float: none;
}
.product-information .cart {
display: flex;
align-items: center;
justify-content: center;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up