Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #425635

    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?

    #425755

    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

    #426436

    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.

    #426556

    Hey!

    You can edit Social Share Buttons element and change the text as needed – http://i.imgur.com/4I7nJLz.png

    Best regards,
    Yigit

    #426627

    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.

    #426968

    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

    #427048

    Thanks.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘How can I add a separating line at the end of each post?’ is closed to new replies.