Hi, I have a site where the social icons do not appear on the mobile view, although they are on the desktop site, top right – in Top Bar.
On the wide screen mobile view, the social icons appear in the header itself, not in the top bar, which I suppose is what is happening on mobile, but you can’t seem them because they are cut off to the right.
How can I make them appear in the red top bar on mobile, just like on desktop? On mobile it just shows a red bar with nothing in it.
Hey Eleina,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 479px) {
.responsive #top #wrap_all #header .social_bookmarks {
display: block;
}
}
Best regards,
Rikard
Hi Rikard,
Well, it’s closer … now they appear in both places, see screenshot: https://ibb.co/nfFLtqY
Hi,
Try this CSS instead:
@media only screen and (max-width: 479px) {
.responsive #top #wrap_all #header .social_bookmarks {
display: block;
}
nav.main_menu .social_bookmarks {
display: none;
}
}
Best regards,
Rikard
Shoot, it didn’t work.
Hi!
Please replace the code with following one
@media only screen and (max-width: 479px) {
.responsive #top #wrap_all #header .social_bookmarks {
display: block;
}
.responsive #top #wrap_all #header .main_menu .social_bookmarks {
display: none;
}
}
Regards,
Yigit
It worked, it’s perfect, thank you so much for staying with me on this!