Hello, I’m attempting to create a transparent icon bar. Could you please provide guidance on how to achieve this?
Topic summary
A user seeks help making their icon bar transparent on their Shopify store.
Solution Provided:
- Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
- Open the
base.cssfile in the Assets folder - Add the following CSS at the bottom:
.icon-bar {
background: transparent;
}
- Save the changes
Outcome:
The solution was successfully implemented and confirmed working by the original poster.
1 Like
Hi @moadamecom ,
Try this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
And Save.
.icon-bar {
background: transparent;
}
Result:
I hope it help.
1 Like
Worked! Thank you Ribe!
1 Like
Welcome happy to help. ![]()


