Hi Community,
I am using a paid theme Minimalista. I’m wondering how to left align “iPhone 17 pro”. (please see screen shot below) website: CHECKERBOARD CASE - BLACK + CREAM – S I C O R A
Thank you!
A user working with the Minimalista paid theme needs help left-aligning a product variant label (“iPhone 17 pro”) on their product page.
Solution Provided:
theme.liquid file</body> tag:<style>
.product-form__controls {
justify-content: start !important;
}
</style>
The responder included a screenshot showing the expected result after applying this CSS modification. The solution targets the product form controls container and changes its alignment property to left-align the variant selector.
Hi Community,
I am using a paid theme Minimalista. I’m wondering how to left align “iPhone 17 pro”. (please see screen shot below) website: CHECKERBOARD CASE - BLACK + CREAM – S I C O R A
Thank you!
Hey @UserDundun
Follow these Steps:
<style>
.product-form__controls {
justify-content: start !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Thank you Moeed! Is this code only affect this variant picker section, or the whole theme layout? I also don’t know if it is matters. I just want to make sure it will not mess up my other pages. Thank you so much!
The code I provided will only affect the variant picker section, nothing else so no need to worry about.
Cheers,
Moeed
To ensure there is no side-effects and no code edits you can use “Custom CSS” setting of the “Main product” section in “Customize”.
Paste Moeed’s code there without <style> ans </style>
.product-form__controls {
justify-content: start;
}
The code will be scoped to this section only.
You’d need to do this for every product page template if you have several.
Hello, @UserDundun
1. Go to Online Store → Theme → Edit code.
2. Open your theme.css / base.css file and paste the code in the bottom of the file.
.product-form__controls {
justify-content: flex-start !important;
}
Thank You!
Hello, @UserDundun
If your issue has been resolved, then you should mark one as the solution.
Thank You!