Hi
I am sorting out website below
For some reason the social icons and contact button (in header widget) disappear on mobile.
Are you able to assist?
Kind ergards
Duncan
Hey dweddell,
Thank you for the inquiry.
The search and social icons are hidden in mobile view by default due to the lack of space in the header. If you want to display them again, you can try this css code:
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive #header .social_bookmarks {
display: block !important;
}
#top #header .av-main-nav>#menu-item-search {
display: block !important;
}
}
Best regards,
Ismael
Thanks Ismael
Its really the header widget button i want to display on mobile…. is this possible using css?
kind regards
Duncan
Hi,
Please try this CSS as well:
@media only screen and (max-width: 700px) {
#header .avia-button.avia-size-x-large {
display: block !important;
}
}
Best regards,
Rikard
Many thanks :)