Hi,
on http://www.musikzentrale.net i reduced the mega menu width for the first menu item via its id to 1024 instead of full template width:
I used the following code i found in the forum:
#menu-item-1357> .avia_mega_div {
width: 1024px;
}
and for the responsiveness
@media only screen and (min-width: 768px) and (max-width: 1024px) {
#menu-item-1357 > .avia_mega_div {
width: 700px;
}
In FF everything is fine, but in all other browser, the two mega menus for “Musikunterricht” and “Musikzentrale” are aligned pretty much to the left screen border. If possible, i would like to align the mega menus right in the middle of the respecting space. How do i set this?
And for some reason i cannot reproduce, the mobile menu became invisible in Chrome and Safari on the iPhone.
Thanks for your help,
Regards, Sebastian
Hi Sebastian,
To center the megamenu, try adding this:
#header .avia_mega_div{
left: -300px;
}
Regards,
Josue
Hi Josue,
thanks, that did the trick.
Redards, Sebastian