Hi, I would like to add a separating line at the end of each post, just above the Share this Entry title and also to make the “Share this entry” font bigger – http://screencast.com/t/Sub6QyYn1A
How can I do that?
Hi DROR!
Thank you for using Enfold.
Use this to add a border on top of the share section:
.single .av-share-box {
border-top: 1px solid red;
padding-top: 20px;
}
Use this to increase the font size:
h5.av-share-link-description {
font-size: 50px;
}
Best regards,
Ismael
Thanks.
How can I change the text “Share this entry” to something else and how can I add another separating line below it (below the share buttons and above the comments section)?
Thanks.
Hey!
You can edit Social Share Buttons element and change the text as needed – http://i.imgur.com/4I7nJLz.png
Best regards,
Yigit
Not sure how to do that since it’s not an element i’m using but the regular sharing options that show below all posts.
Hi!
Use this in the functions.php file:
add_action( 'avia_social_share_title', 'avia_social_share_title_mod', 10, 2 );
function avia_social_share_title_mod($title) {
return 'Change this line!';
}
Change that line. :)
Best regards,
Ismael
Thanks.