Hi Kriesi team,
I’ve finally managed to make social icons visible on the mobile version, so to accomplish that I had to activate the main menu social icons, but I really want them hidden. To do so I tried the following code, but it didn’t work at all:
@media only screen and (max-width: 767px) {
#header_meta .social_bookmarks {
display:none !important;
}
}
Could you guys pls help me out with this one?
Thanks a lot beforehand.
Cheers,
h
Hi Harold,
Can you try this CSS code instead:
@media only screen and (min-width:768px) {
#top nav .social_bookmarks {
display: none;
}
}
Best regards,
Nikko
Hey Nikko,
It did work. Great thanks. However, I’d like to have both the secondary and main menu right-aligned if at all possible, pls?
A screenshot of how misaligned they look has been attached.
Thank you in advance.
Regards,
h
Hi Harold,
Thanks for the screenshot, please replace the last code I gave with:
@media only screen and (min-width:768px) {
#top nav .social_bookmarks {
display: none;
}
#top .avia-menu.av-main-nav-wrap.av_menu_icon_beside {
padding-right: 0;
margin-right: 0;
}
#top #avia-menu #menu-item-2568 a {
padding-right: 0;
}
}
Best regards,
Nikko
Fantastic!… Looking smarter. Thank you, Nikko.
Best regards,
h
Hi Harold,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko