How can I adjust the title position on my website?

Topic summary

A user seeks help repositioning elements on their Shopify store, specifically wanting to move the title higher on the page.

Initial Solution:

  • Add custom CSS code to the theme.liquid file, placed above the tag
  • This successfully adjusts the title position

Follow-up Requests:
The user then asks how to:

  1. Move an additional element lower on the page
  2. Adjust the position of a ‘coming soon’ phrase downward

Technical Approach:

  • Solutions involve adding CSS with position: relative and top properties
  • For the newsletter wrapper heading, code targets .newsletter__wrapper h3 with top: 125px
  • All customizations are applied through the theme.liquid file

Current Status:
The discussion remains ongoing, with the last question about moving the ‘coming soon’ text still awaiting a response. Screenshots are shared throughout to illustrate the specific elements being adjusted.

Summarized with AI on November 13. AI used: claude-sonnet-4-5-20250929.

Hi everyone, I would like to ask for your help.

I can’t move the title slightly higher, what can I do?

Thanks to everyone who will help me.

My website: https://a3cd78.myshopify.com/password

Hey @Jhon16

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi Moeed, ok I did it. One last piece of information, how can I move this below here?

Thank you

Hey @Jhon16

Keep the previous code and add this new code above in the end of theme.liquiid file

.newsletter__wrapper h3 {
    top: 125px !important;
    position: relative !important;
}

RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Ok Moeed, instead, to make the phrase ‘coming soon’ a little lower, how can I do it?

Thank you.