Hey, Ive been trying to make this work for AGES, but nothing seems to work! Does anyone happen to know how I can put the product title and product price inline on my product page on MOBILE ONLY? I will put an example down below! Thanks in advance!
THEME: TASTE
LINK:https://e8aaa0-3.myshopify.com/collections/exfoliate/
PASSWORD: mohwhi
Hello @PRETTYFRIDAYS
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
@media screen and (max-width:767px){
.product .product__info-container {
position: relative;
}
.product .price.price--large.price--show-badge {
position: absolute;
top: 0;
left: 313px;
}
}