So I spent quite a bit of time making my “Menu-Drawer” work well for phone display, but now I’m having a sizing issue on desktop if I make my screen smaller.
This is what I used to adjust my menu-drawer.
}
.menu-drawer {
width: 80vw;
height: 60vh;
overflow-x: none;
top: 0;
}
.menu-drawer__navigation {
height: 30vh;
width: 80vw;
top: 0;
overflow: none;
}
.menu-drawer__submenu {
margin-top: -40%;
height: 40vh;
left: 0%;
top: 0;
width: 80vw;
overflow: none;
}
.menu-drawer__submenu details {
width: 85vw;
overflow: none;
}
#link-anime-franchise {
margin-top: -65%;
width: 80vw;
}
#childlink-anime-apparel {
height: 40vh;
margin-top: -55%;
width: 80vw;
}
This is the Problem: This is my desktop obviously, so I made the screen smaller so it would change my nav links to the menu-drawer. Everything is pushed tooo far towards the top so you cant even see the top half of the list. I did this on purpose when viewing a cell phone because I couldn’t get the menu-drawer’s submenus to display at the top, and the code above was my work around.
WEBSITE ADDRESS: WWW.TOTALWEEB.STORE
Please help! I believe this is a media sizing issue, or maybe I shouldn’t be using vh/vw in my css? I have no idea on where to even begin, it took effort trying to make the phone display good.
