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
its currently looks like this:
i want the dropdown menu to be the same font and size as the normal menu. how can i do this?
website: https://stubbornstudios.com/
Solved! Go to the solution
This is an accepted solution.
Hi @Amin
Try this one.
.header__submenu a {
font-size: 28px;
color: red;
}
header-menu .list-menu--disclosure {
width: 40rem;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
This is an accepted solution.
Hi @Amin
Try this one.
.header__submenu a {
font-size: 28px;
color: red;
}
header-menu .list-menu--disclosure {
width: 40rem;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
It worked but its red how can i change the hex color?
Just simply replace the word "red" with whatever you like. Be sure you don’t add anything or delete any sign. Then save.
How do I change the all products drop down menu so it matches with the rest of my current custom css?
.header__inline-menu a {
color: #5c2c06;
font-weight: bold;
}
.header__inline-menu a:hover {
color: #5c2c06;
text-decoration: underline;
}
ul.sub-menu a,
ul.dropdown a,
.header__submenu-item a {
color: #5c2c06;
font-weight: bold;
}
ul.sub-menu a:hover,
ul.dropdown a:hover,
.header__submenu-item a:hover {
color: #5c2c06;
text-decoration: underline;
}
This is my current custom css code, if that helps