Move titel

Hello guys, how can I move the titel a little more up only on mobile version?

1 Like

Hi @NikosBat

PLease share your store URL and password. Thanks!

1 Like

Hi there, here is the url and password: https://www.nistore.de/products/nistore™-winterhandschuhe, fsfdsfsd

Thanks for the info, try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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
}
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

1 Like

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.

1 Like

Thanks DaisyVo that worked for me

Thanks Made4uo-Ribe, that worked for me