Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #641797

    Hello,

    I love the fact that you have social share buttons that are so easy to implement in the advanced layout builder.

    I have not however found the solution to how to replace the many hover colors (also the hover underline) to just one color

    & the pinterest logo: How can I just get the elegant ‘P’ logo (like on the nav bar) instead of that pin-it button?

    thanks!

    #641914

    can you show us an example page/post of what you mean? because here
    http://kriesi.at/themes/enfold/2014/04/20/week-in-review-what-we-got-right-in-the-lifestyle-section/
    i only see the single “P” for pinterest
    maybe you see on demo-site

    the hover color of the buttons is set for each social link but you can overwrite it by f.e:

    .av-share-link:hover a {
        background-color: #ddd !important;
    }

    and on top you can overwrite specified instruction by:

    .social_bookmarks li:hover a {
        background-color: #aaa !important;
    }
    • This reply was modified 8 years, 5 months ago by Guenni007.
    #642024

    Yes, here is the page with the Pinterest button:
    http://heaven11audio.com/

    • This reply was modified 8 years, 5 months ago by Itai.
    #642157

    but this is not the original Enfold Created Button. Isn’t it?

    how do you put in that background image ? via CSS ?

    #642159

    by the way: if you want the icons to be black on hovering on top-navigation:

    #top #wrap_all .social_bookmarks li:hover a {
        color: #000 !important;
    }
    #642160

    Hey, I just got it.

    I have installed the pinterest “pin it button for Pinterest” plugin. This button adds a ‘pin it’ badge to all my photos. Is there a way to circumvent that in the share bar?

    Also: did more tests: shows up as it should in Firefox & doesn’t show up at all in Safari !??

    • This reply was modified 8 years, 5 months ago by Itai.
    #642575

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    		add_filter('avia_social_share_link_arguments', 'modify_pinterest_pattern', 10, 1);
    		function modify_pinterest_pattern($args)
    		{
    			$args['pinterest'] = array("encode"=>true, "encode_urls"=>true, "pattern" => "http://pinterest.com/pin/create/link/?url=[permalink]&description=[title]&media=[thumbnail]");
    			return $args;
    		}

    Cheers!
    Josue

    #642625

    Yes! it works ! Thanks for the fantastic support guys.

    …The problem with the social buttons on safari was because I had my adblock on…

    PS. When I try to share on Pinterest I got this error: Parameter ‘image_url’ (value http:) is not a valid URL format.

    • This reply was modified 8 years, 5 months ago by Itai.
    #642677

    Hi,

    Glad we could help!

    To know more about enfold features please check – http://kriesi.at/documentation/enfold/

    Best regards,
    Vinay

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘"share this" social icons font & hover color’ is closed to new replies.