How would I make my drawer be full height of page and also add lines?

How would I make my drawer be full height of page and also add lines?

Ceebee1
Excursionist
20 0 3

IMG_2845.jpeg

IMG_2846.jpeg

 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? 

Replies 6 (6)

Made4uo-Ribe
Shopify Partner
9865 2347 2945

Hi @Ceebee1 

Would you mind to share your store URL? Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Ceebee1
Excursionist
20 0 3

Ceebeeldn.com

Ceebee1
Excursionist
20 0 3

@Made4uo-Ribe Ceebeeldn.com

Made4uo-Ribe
Shopify Partner
9865 2347 2945

Thanks for the info, Please make changes on your post. 

https://community.shopify.com/c/shopify-discussions/how-do-i-make-homepage-logo-and-icons-white-and-... 

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:

Made4uoRibe_0-1717790683759.png

 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Ceebee1
Excursionist
20 0 3

It’s not working I use the dawn theme 

Made4uo-Ribe
Shopify Partner
9865 2347 2945

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. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.