-
AuthorPosts
-
June 2, 2016 at 4:41 am #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!
June 2, 2016 at 9:16 am #641914can 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-sitethe 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.
June 2, 2016 at 1:02 pm #642024Yes, here is the page with the Pinterest button:
http://heaven11audio.com/- This reply was modified 8 years, 5 months ago by Itai.
June 2, 2016 at 5:23 pm #642157but this is not the original Enfold Created Button. Isn’t it?
how do you put in that background image ? via CSS ?
June 2, 2016 at 5:41 pm #642159by 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; }
June 2, 2016 at 5:43 pm #642160Hey, 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.
June 3, 2016 at 3:11 pm #642575Hey!
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!
JosueJune 3, 2016 at 4:55 pm #642625Yes! 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.
June 3, 2016 at 7:37 pm #642677Hi,
Glad we could help!
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Best regards,
Vinay -
AuthorPosts
- The topic ‘"share this" social icons font & hover color’ is closed to new replies.