Align centre collection list title homepage - Dawn Theme

Topic summary

A user seeks CSS code to center-align the collection list title “Explore our skincare collection” on their homepage (organicmelody.com.au) using the Dawn theme.

Three solutions were provided:

  1. Mustafa_Ali: Add CSS code in theme.liquid before the closing </body> tag (specific code not visible in transcript)

  2. Moeed: Insert markup code in theme.liquid above the </body> tag, with a visual result showing centered alignment

  3. Rahul_dhiman: Add CSS to base.css file:

.title-wrapper-with-link {
  display: flex;
  justify-content: center;
}

All respondents included screenshots demonstrating their solutions and requested the user mark helpful answers as accepted solutions. The discussion remains open with multiple viable approaches offered.

Summarized with AI on October 29. AI used: claude-sonnet-4-5-20250929.

Hi Guys,

Just wondering if anyone had some code to align centre the collection list title on my homepage ‘Explore our skincare collection’.

url - organicmelody.com.au

2 Likes

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
before the body ----->
if this code work please do not forget to like and mark it solution

Hey @jackthomasp

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 solve your problem then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hello @jackthomasp

Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

.title-wrapper-with-link {
display: flex;
justify-content: center;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

1 Like