Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #796122

    Hi, how can I center align the social profiles icons in the socket? I want them to appear in the center of the page instead of on the right – https://screencast.com/t/4M5T94jp2p

    Thanks.

    #796166

    Hey DROR,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #socket .social_bookmarks {
      float: none;
      margin: 0;
      right: 50%;
    }
    
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #796446

    Thanks Victoria! How can I add the social icons to the menu – https://screencast.com/t/GHAknPsmHG94?

    #796464

    Hi bakbek,

    You can copy avia_append_burger_menu function from functions-enfold.php to your child theme and add icons there.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #796577

    Not really sure I understood that… I’m also not using a child theme. Isn’t there a code I can add to the CSS that will complete this for me?

    #797704

    Hi,

    Please add following code to Quick CSS

    #av-burger-menu-ul li ul.social_bookmarks {
        display: block;
        float: none;
        left: 45%;
    }

    Then add the code in private content field into Appearance > Editor > Functions.php file then go to Appearance > Menus and add your icons into your menu using [av_ssc] shortcode

    Best regards,
    Yigit

    #797731

    Thanks Yigit, the only issue is that the icons are showing up on the bottom right corner and I would like them to show up bottom center. How can I do that?

    Thanks!

    #797916

    Hi,

    Please change CSS code to following one

    #av-burger-menu-ul li ul.social_bookmarks {
        display: block;
        float: none;
        left: -47%;
        right: auto;
    }

    Best regards,
    Yigit

    #797948

    It worked but it seems like the Facebook icon is missing – https://screencast.com/t/mevpaqMNNX – how can I get it to show next to the pinterest one?

    #797951

    Hi!

    Please add following code to Quick CSS as well

    a[href="http://[av_ssc]"] {
        display: none!important;
    }

    Regards,
    Yigit

    #797960

    That didn’t seem to change anything. Isn’t this something that needs to be updated in the code I added to the functions.php?

    #798203

    Hi,

    It should have worked in Quick CSS field. If you do not mind, please post temporary admin logins here privately so we can look into it :)

    Best regards,
    Yigit

    #798210

    Sure, info is added. Thanks.

    #798244

    Hi,

    I changed the code to following one

    #menu-item-7499 a[href="#"] {
        display: none!important;
    }
    

    Please review your website now :)

    Best regards,
    Yigit

    #798251

    Great, thanks!

    #798295

    Hi,

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘How to center align the social icons in the socket?’ is closed to new replies.