Is there any way to set the position of the items prices at the same height? A lot of time the position varies and it looks unpleasant, here is an example my store url is bellezinho.com.br
Topic summary
A user encountered inconsistent vertical alignment of product prices in the Dawn theme, creating an uneven appearance on their store.
Solutions Provided:
-
ThePrimeWeb suggested adding CSS code below the
<head>tag intheme.liquidto standardize price positioning (included screenshot reference) -
PageFly-Henry offered an alternative approach:
- Navigate to Online Store → Theme → Edit code
- Locate the
base.cssfile - Add CSS targeting
.full-unstyled-linkwithmin-height: 100px !importantat the bottom
Outcome:
The original poster confirmed the solution worked perfectly, resolving the alignment issue. Both approaches use CSS to enforce consistent minimum heights for price elements.
Hey @matdantas ,
Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.
Screenshot is for reference only, the correct code to paste is the one shown above.
Hi @matdantas
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
.full-unstyled-link {
min-height: 100px !important;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
It worked perfectly, thank you so much!

