hello, i want to change the design of my menu drawer. I would like the text to be smaller, and for there to be thin grey lines between each section:
this is my website, and I want it to look something like this:
where the text is smaller and there are grey lines between each section
my theme is dawn, website url is www.alexandrawestbrook.com
Hi @ads18922 ,
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
ul.menu-drawer__menu.has-submenu.list-menu li {
box-shadow: 0 3px 2px -2px rgba(0, 0, 0, .2);
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
@ads18922 I forgot to reduce the font size, so please paste this code and remove the one I gave earlier.
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
@media(max-width:767px){
ul.menu-drawer__menu.has-submenu.list-menu li {
padding: 6px 4px;
box-shadow: 0 3px 2px -2px rgba(0, 0, 0, .2);
}
ul.menu-drawer__menu.has-submenu.list-menu li a, detail {
font-size: 14px;
}
.menu-drawer summary.menu-drawer__menu-item {
font-size: 14px;
}
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!