Hi
To make a social icon appear on mobile I used the code below. This works fine except that it moves the menu icon down a bit, out of line with the logo, thus:
How can I raise it up a bit?
many thanks
Peter
@media only screen and (max-width: 989px) {
.responsive .av_mobile_menu_tablet .main_menu {
display: block !important;
}
.avia-menu { display: none !important; }}
@media only screen and (max-width: 767px) {
.responsive #header .main_menu ul {
display: block !important;
}}
@media only screen and (max-width: 767px) {
.responsive.html_header_top #header_main .social_bookmarks {
right: -30%;
width: auto;
margin-top: 5%;
}}
@media only screen and (max-width: 767px) {
.responsive.html_header_top #header_main .social_bookmarks {
right: -90%; }}
Hey envapk2,
Please try the following in Quick CSS under Enfold–>General Styling:
@media only screen and (max-width: 767px) {
#advanced_menu_toggle {
margin-top: -55px !important;
}
}
Thanks,
Rikard
Hi Rikard
That’s great.
many thanks
Peter