Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
Can someone help me to change the color on the TOP of the header (where the social icons are)? See attached screenshot.
https://anne-margrethe-art.myshopify.com/
The Code I have here today is as follow. I still want the icons to be on the left side, but in white color:
header#SiteHeader {
box-shadow: 0 0 1px #af9d70 !important;
}
.toolbar__content {
justify-content: flex-start !important;
}
.toolbar__item path {
color: #af9d70 !important;
}
Solved! Go to the solution
This is an accepted solution.
Hi @sondrehille
I just like to clarify, youy like to change the color background of the header top, and make the icons color white? Like this?
This is the code.
.toolbar.small--hide {
background: #af9d70;
}
.toolbar__item path {
color: white !important;
}
And Save.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
Hi @sondrehille
I just like to clarify, youy like to change the color background of the header top, and make the icons color white? Like this?
This is the code.
.toolbar.small--hide {
background: #af9d70;
}
.toolbar__item path {
color: white !important;
}
And Save.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Wow - thank you so much! It worked 🙂