Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #265433

    Hi, I wish to take control of theme’s socials icons, is it posible to use them with some shortcode to insert somewhere in a page? In that case, how can I customize them to change the colour or size? Thanks in advance…

    #265455

    In the advanced layout builder you can simply add icons to your page.
    In the options of each icon element, you can then place a link

    #265465

    Thanks for your help, but I mean using social icons appearing in theme’s menu in other areas, with its hover effect also

    #265481

    To give the icon a class:
    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    For a facebook icon the class you’d need to use is av-social-link-facebook

    hope that helps

    #265656

    Hi!

    Thank you for the update.

    Where do you like to show the social icons? You can use the avia_social_media_icons function in order to render the social icons on different parts of the page.

    $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    $icons = avia_social_media_icons($social_args, false); 
    						
    echo $icons;

    A screenshot of what you’re trying to do will help.

    Cheers!
    Ismael

    #266406

    Thanks, I want to use theme’s social icons as a widget, or adding to a page with a code block element. How can I do that? How can I use the code you typed?

    #266429

    Hi!

    Try using the Chrome Inspect Tool to get the HTML code of the icons (select the ul container), then you can use it wherever you like:

    Regards,
    Josue

    #266434

    Ok that works, Thanks! Finally how can I customize them? (makes bigger, change hover colour and so on)

    #266438

    Setting a custom ID to the container:

    <ul id="custom_links" class="noLightbox social_bookmarks icon_count_4"><li class="social_bookmarks_twitter av-social-link-twitter social_icon_1"><a target="_blank" href="http://twitter.com/#/" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Twitter"><span class="avia_hidden_link_text">Twitter</span></a></li><li class="social_bookmarks_skype av-social-link-skype social_icon_2"><a href="#" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Skype"><span class="avia_hidden_link_text">Skype</span></a></li><li class="social_bookmarks_mail av-social-link-mail social_icon_3"><a href="#" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Mail"><span class="avia_hidden_link_text">Mail</span></a></li></ul>
    

    Then you can customize them with CSS:

    /* Idle (all links) */
    #custom_links li a {
        background: blue !important;
        color: white;
    }
    
    /* Hover(all links) */
    #custom_links li a:hover {
        background: green !important;
        color: yellow !important;
    }
    
    /* Specific link (second one) */
    #custom_links li:nth-child(2) a {
        background: peru !important;
    }

    Best regards,
    Josue

    #304927

    hi any advice as to why the social media icons other than facebook aren’t displaying or floating in the footer of column1 on http://79.170.43.15/opulentfinancialplanning.co.uk/

    #304930

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #footer ul.social_bookmarks li {
    clear: none;
    }

    Cheers!
    Yigit

    #304933

    Ah great thank you Yigit it now works fine :)

    #304934

    Hey!

    You are welcome :) Have a great weekend!

    Regards,
    Yigit

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Using Enfold Social Icons?’ is closed to new replies.