Liebes Support Team,
für die Website http://test.eisenlauer-muenchen.de/ gibt es beispielsweise für den Menüpunkt “Stadtplanung” ein Mega Menu als Untermenü.
Dieses sollte immer (egal bei welcher Bildschirmbreite) sich über die gesamte Layoutbreite erstrecken.
Momentan habe ich es übergangsweise so gelöst, dass ich im CSS folgenden Code eingefügt habe:
#top #header .avia_mega_div {
width: 1340px;
}
Verkleinert man aber den Screen, so ist mit diesem Code und der fixen Breitenangabe von 1340px das Mega Menu angeschnitten und das Ganze funktioniert nicht mehr.
Wie kann ich den Code angeben, dass das Mega Menu sich in der Breite immer 100% an der Layoutbreite anpasst?
Vielen Dank im voraus und viele Grüße, Diane
Hi Diana,
Try adding max-width on your CSS code:
max-width: 100%;
If the screen width is lesser than 1340px then it should limit itself to 100% maximum width.
Best regards,
Nikko
Hi Nikko,
Unfortunately it doesn’t work if I add the code “max-width: 100%;”: then the following happens with the menu as shown in the screenshot: https://osmosis.de/support%20/bildschirmfoto.png
Is there any other solution?
Best reagrds Diana
Hi Diana,
Can you try to remove the max-width property, then add this CSS code:
@media only screen and (max-width:1360px) {
#top #header .avia_mega_div {
max-width: 1000px;
}
}
Best regards,
Nikko
Thank you Nikko. This script of you solved the problem. Thank you!
Hi DianaLoola73,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko