Please help!
1 Like
my url is voribrand.com
Hi @Antzahr
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: 749px){
.product__title {
position: absolute;
top: 20%;
left: 10%;
right: auto;
}
.grid__item.product__media-wrapper.product__column-sticky {
padding-top: 70px;
}
}
- And Save.
- Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
it sort of worked however it messed the text up on my home page and for some reason it shows it moved in the shopify store editor but not when i go to my site on my actual phone
1 Like
Oh, Try this one maybe.
Same Instruction.
@media only screen and (max-width: 749px){
#ProductInfo-template--20167987036466__e4dc398e-2360-4c1a-880e-966155cc07f5 > h2 {
position: absolute;
top: 0%;
left: 10%;
right: auto;
}
#shopify-section-template--20167987036466__e4dc398e-2360-4c1a-880e-966155cc07f5 > section > div > div > div.grid__item.product__media-wrapper {
padding-top: 70px;
}
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!