Hi everyone, I need your help. I would like to decrease the font size of my drop-down menu. Unfortunately I can’t do it alone.
Thank you in advance for your kind replies ![]()
Mark
Site link: refade-8966.myshopify.com
A user seeks help reducing the font size of their Shopify store’s drop-down menu. They successfully resolved the font size issue independently but encountered difficulty resizing the dropdown arrows on both desktop and mobile devices.
Solutions provided:
.aside-menu__item .icon-arrow with width/height set to 2rem successfully reduced desktop arrow size.menu-drawer .icon-arrow (1.5rem) didn’t work as expectedmax-width: 768px media query and width: 20px !important resolved the mobile arrow sizing issueStatus: The issue appears resolved with the final CSS solution addressing both desktop and mobile arrow sizes. Code snippets and visual examples were provided to demonstrate the results.
Hi everyone, I need your help. I would like to decrease the font size of my drop-down menu. Unfortunately I can’t do it alone.
Thank you in advance for your kind replies ![]()
Mark
Site link: refade-8966.myshopify.com
Hi @Marco211
Did you already solved the problem? I just see this code in your base.css file.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hi, I managed to resolve the issue related to the font, but I can’t reduce the size of the arrows in the drop-down menu. Do you know how to do it? Both on phone and computer
Thank you ![]()
Yep sure, add this one.
/* desktop screen */
.aside-menu__item .icon-arrow {
width: 2rem;
height: 2rem;
}
/* mobile screen */
.menu-drawer .icon-arrow {
width: 1.5rem;
height: 1.5rem;
}
And Save.
Result:
If its not working just add !important;
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
A thousand thanks. The only thing is that on the phone the arrows are still large. They only shrunk on desktop
Hi @Marco211
To complete your requests, please follow these steps:
@media screen and (max-width: 768px){
header-drawer details.menu-drawer-container div#menu-drawer summary.menu-drawer__menu-item > svg.icon.icon-arrow {
width: 20px !important;
}
}
Here is the result:
I hope this helps
Best,
Daisy