Hello,
On the page https://vietnamazing.eu/be-part-of-it/ the social buttons are not displayed in the header on mobile phones. How could you do that? Create an alternative menu for mobile devices?
Best regards,
Martin
Hey Martin,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
.responsive #top #header .social_bookmarks {
display: block !important;
}
}
Best regards,
Rikard
Hello Rikard,
thank you very much, it works. One question: do you get the social buttons and the subnavi in one line? Now it’s underneath each other and takes up more space.
Best regards,
Martin
Hi,
Thank you for the update.
You can add this css code to align the social icons and the subnavi beside each other.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive #top #header_meta .container {
display: flex;
align-items: center;
justify-content: center;
}
.responsive #top #header .social_bookmarks {
display: block !important;
float: none;
width: auto;
}
.responsive #header .sub_menu,
.responsive #header_meta .sub_menu>ul {
float: none;
margin: 0;
width: auto;
position: relative;
margin-top: -10px;
}
}
Best regards,
Ismael
Very, very, very good Ismael, thank you very much!