Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi,
I've been struggling all day long with aligning two elements on the same line on my product page template as it seems to be about more than CSS.
Here's the URL to my preview page : https://wpz3qzw0b6rlg3eb-73117630728.shopifypreview.com/products/lintriguant
You will find visuals below showcasing what I would like to do compared to what I currently have.
Thank you for helping !
Solved! Go to the solution
This is an accepted solution.
@media screen and (min-width:550px){
.product-info__block-item[data-block-type="quantity-selector"] {
display: inline-block;
width: 30% !important;
margin-right: 5%;
}
.product-info__block-item[data-block-type="buy-buttons"] {
display: inline-block;
width: 65% !important;
}
}
If you require further help to optimize your store, please don’t hesitate to reach out.
This contribution will always benefit you and you will get my full help easily and you can contact me easily.
Contect On My Mail :-raj.s.webdeveloper@gmail.com OR My Site:-Link
Hello @ChrisRndr,
To align two elements in the same line, follow the steps below:
.product-info__block-item[data-block-type="quantity-selector"] {
display: inline-block;
width: 30%;
}
.product-info__block-item[data-block-type="buy-buttons"] {
display: inline-block;
width: 70%;
}
This is an accepted solution.
@media screen and (min-width:550px){
.product-info__block-item[data-block-type="quantity-selector"] {
display: inline-block;
width: 30% !important;
margin-right: 5%;
}
.product-info__block-item[data-block-type="buy-buttons"] {
display: inline-block;
width: 65% !important;
}
}
If you require further help to optimize your store, please don’t hesitate to reach out.
This contribution will always benefit you and you will get my full help easily and you can contact me easily.
Contect On My Mail :-raj.s.webdeveloper@gmail.com OR My Site:-Link
This worked perfectly, thank you so much !
Hi, this works but i want to show the buy it now button in full length.
how can we do so??
Thanks for your reply, it works !