Thanks in advance!
I am looking to move my product template over to the right instead of the default position. Example shown below.
password: dc
Thanks in advance!
I am looking to move my product template over to the right instead of the default position. Example shown below.
password: dc
Hi there,
To move your product template on the product page to the right, you’ll need to make some adjustments to your theme’s code. Here’s a step-by-step guide to help you with this:
Access Your Theme Code:
Locate the Product Template:
Edit the CSS:
Add Custom CSS:
Add the following CSS code to position the product template to the right:
css
.product-single {
display: flex;
justify-content: flex-end;
}
.product-single__photo {
order: 1;
}
.product-single__details {
order: 2;
margin-left: 20px; /* Adjust this value to your liking */
}
Preview and Adjust:
- Save your changes and preview the product page to see if it looks as expected.
- Adjust the margin-left value if needed to get the perfect layout.
For more detailed customization or if you’re using a different theme setup, you might need to tweak the CSS and Liquid code further. If you need additional help, feel free to ask and visit this website!
Hi @MMast , Do you want it to look like this:
Look for “edit code” in “customize theme” and paste the following CSS code into the “theme.css” or “base.css” file:
.content-for-layout .page-width {
max-width: 100% !important;
}
.product__info-wrapper product-info {
padding-left: 20%;
}