I’m trying to add a padding space between the navigation bar and content on the product page! Thanks in advance. I’m using Refresh theme
Topic summary
A user seeks to add padding space between the navigation bar and content on product pages using the Refresh theme.
Proposed Solution:
A PageFly representative suggests a CSS customization approach:
- Navigate to: Online Store → Theme → Edit code
- Locate the base CSS file (Assets → base.css)
- Add the following CSS code at the bottom of the file:
header {
margin-bottom: 50px;
}
This adds a 50-pixel margin below the header element, creating the desired spacing. The solution provides a straightforward CSS-based fix without requiring theme file modifications beyond adding custom styling.
Hi @culipa
This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:
.header {
margin-bottom: 50px;
}
Hope my answer will help you
1 Like