-
AuthorPosts
-
April 4, 2022 at 8:13 am #1347095
Guten Morgen
Warum wird das Menue nicht mittig unter dem Logo angezeigt sonder rechts?
Welchen alten Code im CSS muss ich im Quick CSS anpassen oder löschen?Freundliche Grüsse
ClaudiaApril 4, 2022 at 9:50 am #1347104Hey Claudia,
Please try the following in Quick CSS under Enfold->General Styling:
.html_header_top.html_bottom_nav_header #header_main_alternate .main_menu { float: none; }
Best regards,
RikardApril 4, 2022 at 5:19 pm #1347165Thank you. It works fine.
ClaudiaApril 4, 2022 at 5:28 pm #1347166Jetzt habe ich das Problem, dass das Burgermenue nicht mehr richtig funktioniert:
Was muss ich bei diesem Code ändern, damit das Burgermenue angezeigt wird, wenn die Fensterbreite zu klein wird?
Im Moment schiebt sich das Menue auf eine zweite Zeile./* Activate burger menu */
@media only screen and (max-width: 1200px) {
#top #header .av-main-nav >re.menu-item {
display: none!important;
}April 4, 2022 at 6:23 pm #1347179Hi,
Please try this CSS instead:
@media only screen and (max-width: 1200px) { nav.main_menu { display: block !important; } #avia-menu .menu-item { display: none; } .av-burger-menu-main.menu-item-avia-special { display: block; } }
Best regards,
RikardApril 4, 2022 at 6:32 pm #1347183Danke. Es erscheinen nun zwei Burger Menues (mittig und rechts).
Ich möchte das Burger Menue auf der rechten Seite anzeigen lassen
und das mittige Burgermenue unter dem Logo verbergen?April 5, 2022 at 10:50 am #1347235Hi,
Thanks for the update. I’m not sure I understand the problem now, I only see one burger menu, and it’s breaking at 990 pixels. What exactly are you looking to change?
Best regards,
RikardApril 5, 2022 at 11:13 am #1347248Hallo Rikard
Das Logo steht Links, Das Menue darunter rechts. Woher kommen die 900px? Ich habe 1400px eingestellt.
Wenn mann das Fenster verkleinert, gibt es einen Sprung und es werden zwei Burgermenues links angezeigt, erst später kommt das Burger menue nach rechts (vgl. Foto).
Thank you
ClaudiaApril 5, 2022 at 11:47 am #1347259Hi,
Thanks for that, I see the problem on my end now as well. Please try this CSS as well:
@media only screen and (min-width: 990px) and (max-width: 1400px) { #header_main_alternate { display: none; } .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 105px !important; } }
Best regards,
Rikard -
AuthorPosts
- You must be logged in to reply to this topic.