For some some certain reason there is no space or separation between the TITLE of my collection and PRODUCTS .
As seen in the snapshot, can anyone guide regarding how to put a space between them .
Thanks
A user encountered a layout issue where collection titles appeared directly against product listings with no spacing in between.
Solution Provided:
Two developers offered the same CSS fix:
theme.css or base.css#shopify-section-collection-template.page-width {
padding-top: 20px; /* or 30px */
}
Outcome:
The user confirmed the solution worked successfully, resolving the spacing issue.
For some some certain reason there is no space or separation between the TITLE of my collection and PRODUCTS .
As seen in the snapshot, can anyone guide regarding how to put a space between them .
Thanks
Hello @hunainkhan
please add this css Asset > theme.css and paste this at the bottom of the file:-
#shopify-section-collection-template .page-width {
padding-top: 20px;
}
Hi @hunainkhan
This is Richard from PageFly - Shopify Page Builder App, Iād like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css or theme.css
#shopify-section-collection-template .page-width {
padding-top: 30px !important;
}
Hope you find my answer helpful!
Best regards,
Richard | PageFly
Thank you. It worked.
Thanks