Hello guys, how can I move the titel a little more up only on mobile version?
Hi @NikosBat
PLease share your store URL and password. Thanks!
Hi there, here is the url and password: https://www.nistore.de/products/nistore™-winterhandschuhe, fsfdsfsd
Thanks for the info, 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){
.image-with-text__content {
padding-bottom: 1rem !important;
padding-top: 1rem !important
}
}
- 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!
Hi @NikosBat
You can try one out of 2 codes below here and see if it works.
1/ Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
2/ From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
3/ Copy the code below and paste it there
Here is the code for Step 3:
Code 1:
@media screen and (max-width: 768px){
div#ImageWithText--template--22800324755788__image_with_text_JEWyr7 {
padding-top: 10px !important;
}
}
Code 2:
@media screen and (max-width: 768px){
div.image-with-text__content {
padding-top: 10px !important;
}
}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.
Thanks DaisyVo that worked for me
Thanks Made4uo-Ribe, that worked for me


