Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #686644

    This is the settings I am using: Header / Extra Elements / Header Social Icons / Display in main header area

    Looks great on the desktop but is not visible on a mobile, what can be done to make the social icons visible on a mobile like they are when they are displayed in the bar option?

    Thank you.

    By the way, love the updates with 3.8, can’t wait to explore it more!

    #687321

    Hey Micheal0424,

    Glad you like the new features :-)

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #688720

    As you can see with this website the social icons are visible on the desktop but not on the mobile view.

    This is only the case when using the settings: Header / Extra Elements / Header Social Icons / Display in main header area

    Thank you.

    #688722

    Hey!

    Please add following code to Quick CSS

    .responsive.html_mobile_menu_tablet #header_main .social_bookmarks {
        display: block !important;
    }

    Cheers!
    Yigit

    #688808

    Thank you, they are showing up now.

    They are not showing up properly on the screen though.

    The Facebook icon is mostly not seen, is there a way to center the icons?

    I tried this but it didn’t work:

    .responsive.html_mobile_menu_tablet #header_main .social_bookmarks {
    display: block !important;
    position: center;
    }

    What would be even better is the social media icons could be at the centered top of the screen if that it possible.

    Thank you.

    #689158

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    
    .responsive.html_header_top #header_main .social_bookmarks, .responsive.html_top_nav_header #top .social_bookmarks {
        right: 0;
    }}
    

    Best regards,
    Yigit

    #691066

    That worked, thanks.

    I changed where it says right to center thinking it would center the icons in the middle of the screen and it put the icons back off the screen like it was before.

    How do I center the icons and also bring them to the top of the screen above the logo and hambuger menu?

    Thank you.

    #691466

    Hi,

    Sorry for the late reply.

    Try changing the value for the “right” from 0 to -25% and see if that helps center the social icons.

    Best regards,
    Jordan

    #694450

    That didn’t make a difference.

    My other question was how to get the social media icons to the top of the mobile device?

    Any ideas?

    Thank you.

    #695062

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    #header_meta {
        z-index: 1;
    }
    .responsive.html_mobile_menu_tablet #header_main .social_bookmarks {
        position: relative;
        top: -90px;
    }}
    

    Best regards,
    Yigit

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.