we are needing to raise the text in the menu on mobile to the top of page as it’s currently in the middle of the menu, we have added an photo for reference. we also are needing to raise the log-in & social media icons with this & placed under the menu links. Thank you if you could help with both of these that would be highly appreciated.
Our website.. https://munnafashion.com
@munfas_uk
Hi,
Please add the code below to Assets > component-menu-drawer.css file.
.menu-drawer__navigation {
padding: 0 !important;
}
Hope it helps.
That worked! Do you know how to raise the log-in & social media icons? We need them placed under the menu links. Your help is very much appreciated, Thank you. 
- Go to Assets > component-menu-drawer.css file.
- Find (Ctrl+F) .menu-drawer__navigation-container
- Remove height: 100%;
It should be as below.
.menu-drawer__navigation-container {
display: grid;
grid-template-rows: 1fr auto;
align-content: space-between;
overflow-y: auto;
/* height: 100%; */
}
/* Comment out */
or
.menu-drawer__navigation-container {
display: grid;
grid-template-rows: 1fr auto;
align-content: space-between;
overflow-y: auto;
}
Hope it helps