hello, i would like to remove the small gap between my product name and price for my product card:
my website is www.alexandrawestbrook.com , theme is dawn
A user seeks to reduce the vertical spacing between product names and prices on their product cards. The site uses the Dawn theme.
Two CSS solutions were provided:
Method 1 (LizHoang): Add code to the base.css file:
.card-information {
margin-top: -4px !important;
}
Method 2 (DaisyVo): Add code via Theme Settings > Custom CSS:
.card__heading .card-information {
margin-top: -3px !important;
}
Both approaches use negative top margins to close the gap. Screenshots demonstrate the expected results. The discussion remains open with no confirmation from the original poster about which solution was implemented or whether the issue was resolved.
hello, i would like to remove the small gap between my product name and price for my product card:
my website is www.alexandrawestbrook.com , theme is dawn
Hi @ads18922
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file
.card-information {
margin-top: -4px !important;
}
Result
Best,
Liz
HI @ads18922
To complete your requests, please follow these steps:
.card__heading .card-information {
margin-top: -3px !important;
}
Here is the result:
I hope this helps
Best,
Daisy