All things Shopify and commerce
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
hi I would like my drawer to be the full height of page and also add line on it like photo shown above how would I do this?
Hi @Ceebee1
Would you mind to share your store URL? Thanks!
Ceebeeldn.com
Thanks for the info, Please make changes on your post.
So it will goes to get this design.
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, style.css or theme.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:
@media only screen and (max-width: 749px){
.menu-drawer {
top: 0;
}
.header__icon--menu svg.icon.icon-close {
color: black !important;
z-index: 5;
}
ul.menu-drawer__menu.has-submenu.list-menu {
padding-top: 20px;
}
}
And Save.
Result:
It’s not working I use the dawn theme
Add this on diffirent files.
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 "theme. Liquid" file. Find the </body> tag and paste the code below before the tag.
<style>
@media only screen and (max-width: 749px){
.menu-drawer {
top: 0;
}
.header__icon--menu svg.icon.icon-close {
color: black !important;
z-index: 5;
}
ul.menu-drawer__menu.has-submenu.list-menu {
padding-top: 20px;
}
}
</style>
And Save.