Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1363496

    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.

    #1363515

    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

    #1363519

    Hi Rikard,

    Well, it’s closer … now they appear in both places, see screenshot: https://ibb.co/nfFLtqY

    #1363531

    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

    #1363534

    Shoot, it didn’t work.

    #1363648

    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

    #1363665

    It worked, it’s perfect, thank you so much for staying with me on this!

    #1363666

    Hi,

    You are welcome, Eleina!

    Let us know if you have any other questions and enjoy your weekend :)

    Best regards,
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Social Icons not appearing on Mobile’ is closed to new replies.