How can I:
-
change the color on the divider in the header (under the social icons) (see attached)
-
Move the social Icons over to left, and have them in another color?
A user seeks to customize their Shopify store header by:
The user clarifies they need to modify the divider specifically, not the overall header color, and notes these changes likely require custom code.
Solution provided:
A PageFly support representative shares CSS code to implement these changes:
base.css file.SiteHeader, .toolbar__content, and .toolbar__item path elementsThe user confirms the solution works successfully.
How can I:
change the color on the divider in the header (under the social icons) (see attached)
Move the social Icons over to left, and have them in another color?
It is not the header color that needs to be changed.. it is the divider. There is no way you can change it without code i guess…
Same for changing the colors on the Social icons, and moving them to the left.
Hi @sondrehille
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
header#SiteHeader {
box-shadow: 0 0 1px red !important;
}
.toolbar__content {
justify-content: flex-start !important;
}
.toolbar__item path {
color: red !important;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
wow . thank you so much! Really ![]()