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

    Hello Support Team

    I have 2 Questions:
    First one:
    I try to place the “Read More” Element directly behind the excerpt text, not to the next line/paragraph.
    I use the standard Avia Blog post element.

    Second one:
    Where can i customice the length of the excerpt text? Of course i can do it manualy with the excerpt field at the backend, but i search a solution for all blog post entries at once.

    Thanks a lot

    #735322

    Hi Meijestic!

    1- Can you please post a link to your page and a screenshot showing the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here
    2- Please add following code to Functions.php file in Appearance > Editor and adjust the value as needed

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }

    Best regards,
    Yigit

    #735332

    hey
    thanks for your reply.
    here is the screenshot
    https://dl.dropboxusercontent.com/u/14869691/Bildschirmfoto%202017-01-18%20um%2013.42.29.png

    thanks a lot

    #735338

    hey yigit

    i have post your code to my child theme function.php, but there’s no change at the frontend.

    i have send you a login to have a look to the website.

    thanks a lot

    #735869

    Hi,

    1- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .read-more-link {
        float: right;
    }
    

    2- Can you please switch user role to administrator so we can edit functions.php file in Appearance > Editor?

    Best regards,
    Yigit

    #735886

    okay, your permission is updated!

    If i change the read more class to float left, the text float to the right side. I need it directly beside the excerpt text. Is it possible ?

    tahnks a lot

    #738152

    Hi,

    Please add this in the Quick CSS field.

    .avia-content-slider .slide-entry-excerpt * {
        display: inline;
    }

    Best regards,
    Ismael

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.