I would like to align the price and the title of my product on same line on the product pages like the website below. I want this to appear only in mobile view. I’m using elle theme. my website is www.alorena.com.
1 Like
Hi @Damonizy
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 767px){
.productView-moreItem .productView-price .price {
justify-content: end;
margin-top: -35px;
}
}
- And Save.
- Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!