Hello,
My website is: https://agroen.be/
My questions are about the header. I managed to put a hamburger menu (dawn theme) with custom code:
@media screen and (min-width: 990px) {
header-drawer { display: block !important;}
.header--middle-left .header__inline-menu { margin-left: 0; display: none !important;}
.header__heading, .header__heading-link { justify-self: center !important; grid-area: initial !important;}
}
.header {
display: grid;
grid-template-areas: 'left-icon heading icons';
grid-template-columns: 1fr 2fr 1fr;
align-items: center;
padding-top: 1rem;
padding-bottom: 1rem;
}
I would like the hamburger menu icon to be on the far right (and not the far left).
I would like the logo to be far left.
And finally I would like the padding on the header to be smaller (so I want the header height reduced).
Can someone please help me? Thanks in advance. ![]()

