I am using the 10.0 Colorblock Theme and the main menu/drop-down menu at the top of our store is a really small font. How do I increase the font?
Topic summary
Goal: Enlarge the main and drop-down menu font in the Shopify Colorblock 10.0 theme.
What was tried:
- Helper requested the store URL; the OP shared https://openstudioshop.ca/.
- Proposed fix: add CSS (Cascading Style Sheets) to the theme’s base.css via Online Store > Themes > Actions > Edit code.
• Drop-down items: div#MegaMenu-Content-2 li a { font-size: 2rem; white-space: nowrap; }
• Main menu: nav.header__inline-menu a { font-size: 2rem; } and summary#HeaderMenu-artwork span { font-size: 2rem; } - OP confirmed where to place code; instructed to paste at the bottom of base.css, save, and preview. Screenshots were included to show the expected result.
Latest update / status:
- Another user reports partial success: the “Shop” top-level link (which opens a drop-down) did not enlarge, likely due to different selector behavior. They requested further help to adjust the CSS.
Outcome: No final resolution yet; the thread remains open with an outstanding issue on enlarging the drop-down trigger (“Shop”) link.
Hi @BydlowskaL ,
Would you mind to share your URL website? with password if its protected. Thanks!
Hi there! It’s: https://openstudioshop.ca/
Thannk you for the info. 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.
div#MegaMenu-Content-2 li a {
font-size: 2rem;
white-space: nowrap;
}
Result:
Note; you can adjust the sizes.
I hope it help.
for the main menu.
nav.header__inline-menu a {
font-size: 2rem;
}
summary#HeaderMenu-artwork span {
font-size: 2rem;
}
Result:
Hi there! Do you mean I should paste it at the bottom of the base.css file?
Can you confirm where these edits should be made?
You can copy and paste in the base.css file. click save then preview.
hello, I tried your code in my base.css file and it’s not working completely because the Shop link in my main menu is not enlarging, probably because it opens a drop down menu with different links. can you help me solve it? thanks!

