Hey all! I’m trying to change the colour of the menu bar on the “studio” theme. I’ve tried literally every single code out there that I could find and nothing is working. Please help me!
Topic summary
A user seeks help changing the menu bar color in Shopify’s Studio theme after unsuccessful attempts with various code snippets. Screenshots show the current menu bar appearance.
Solution Provided:
- Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
- Locate the
base.cssfile in the Assets folder - Add CSS targeting
header.header.header--top-center.page-width.header--has-menu nav.header__inline-menu - Modify
backgroundproperty to desired color - Set
width: 100%andtext-align: center
The original poster confirms this solution works successfully.
Follow-up Issues:
- Users on different themes (Kalles) cannot locate
base.cssfile; suggested alternatives includestyle.cssortheme.css - One user asks how to extend the menu bar to full page width (matching announcement bar)
- Another user reports changing the width value from
100%to150%achieved the desired full-width effect
Status: Resolved for original poster; ongoing troubleshooting for users on different themes or seeking width adjustments.
Hi @emmaD06
Try this.
- 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.
header.header.header--top-center.page-width.header--has-menu nav.header__inline-menu {
background: aquamarine;
width: 100%;
text-align: center;
}
Result:
I hope it help.
Thank you so much!!! Youre a lifesaver!!
Your Welcome! ![]()
Hey bro, I am using the Kalles Theme and can’t find the “base.css” in the edit code section anywhere… Where should I post this code to work?
Hi @Huzaifa_K
Would you mind to share your store URL? Thanks!
Did you find out an answer to this? I also can not find base.css
Check the style.css, theme.css, or would you mind to share your store URL? Im not sure if thhis code will work in your store since I provide the code base on the post owner.
Hello! I also used this for my store and it works great and I was able to change the color! My question is how do I make it the full width of the page, so it’d match the announcement bar width?
Thanks!
Hi, i wanted to do this too! i followed the exact steps as the solution on this thread, changed my colour code and changed “100%” to "150% and that seemed to work ![]()


