Dear team,
on my page below the mobile menu view is not readable properly.
– line height too narrow
– highlighted menu item “Potenzial Check” overlays menu entry above
– and how can I limit the maburger menu width e.g. to 35% screen size?
Thx a lot & best regards, Tilman
FYI the current CSS reads as follows (I guess the initial code lines need to be changed re. the a.m. solution (?):
Hey Tilman,
Thank you for the inquiry.
You can use the following css code to adjust the height of the burger menu items and the width of the overlay container.
.html_av-overlay-side #top #wrap_all .av-burger-overlay li a {
line-height: 2em;
height: auto;
padding: 15px 50px;
}
.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll {
width: calc(100vw - 65%);
}
Best regards,
Ismael
Hey Tilman,
Thank you for the inquiry.
You can use the following css code to adjust the height of the burger menu items and the width of the overlay container.
.html_av-overlay-side #top #wrap_all .av-burger-overlay li a {
line-height: 2em;
height: auto;
padding: 15px 50px;
}
.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll {
width: calc(100vw - 65%);
}
Best regards,
Ismael
Hey Ismael,
thx a lot, this works :-)
Cheers. Tilman