Product Title position more higher on Dawn Theme

Topic summary

A user wants to reposition the product title on their Dawn theme store to sit directly below product images with centered alignment.

Current Status:

  • The title has already been centered using base.css modifications
  • The goal is to eliminate spacing between the image and title on collection pages, featured products, and other product displays

Solution Provided:
Another user shared CSS code to remove the top padding:

  • Add the code snippet to theme.liquid file (located in layout folder, above the </body> tag)
  • The CSS targets .product-card-wrapper .card__information and sets padding-top: 0!important;

Visual References:
Both users included images showing the before/after states, though the image URLs appear corrupted in the thread. The solution appears to successfully achieve the desired layout adjustment.

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

Good evening to all,

I have already moved my product title to the center of the picture per base.css. Now, however, I want the title to be directly attached to the image from below (with the same central position) on Collection, page, featured etc.

Maxi-Brillian (maxibrillian.com)

pw: deropa

@MaxiMaxi

please add code above in theme.liquid

layout >> theme.liquid

.product-card-wrapper .card__information { padding-top: 0!important; }

after add the code look like this,

1 Like