Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #548256

    Hello Supporters

    Enfold is great. Even tough I am a complete Greenhorn, I am able to build a suitable webpage. And the information available is very good.
    Nevertheless I can’t overcome a specific customization and therefore ask for help. I set up a Grid Layout blog (blog styling: Business; layout: advanced layout builder; grid layout, square 180×180)

    1. What are the CSS commands to change the font size of the category and comment/date line? I found the CSS commands for title & content, but not the others
    .slide-entry-title.entry-title { font-size: 14px; }
    .slide-entry-excerpt.entry-content { font-size: 13px; }

    2. How can I enlarge the size of the content “box”? I would like to display more of the content (about the same amount of content text, as if I would choose the Elegant blog layout)

    I hope someone can help me. Thanks in advance.

    M.D.

    #548342

    Hi deboman!

    1. We need to be able to inspect the elements in question. Can you show us where we can find them please? not sure where to look at on your website.

    2. Same as 1., but maybe you mean this:

    .iconbox_content_container li {
    font-size: 7px
    }
    

    Best regards,
    Andy

    #548375

    ok Andy

    Please go to the Menu “Blog”, see e.g. Post with title “New electric cars are getting really fast”

    1.
    Line: Category “Allgemein” -> this font size I would like to change (I managed to reduce the font size for title & text in Quick CSS)
    Line: 0 Kommentare/7. Dezember 2015 -> also this font size I would like to change

    2.
    Text: Donec quam felis, ultricies nec, pellentesque eu, pretium quis,… -> I would like to display more text. If I choose the elegant blog layout then much more excerpted text is displayed.

    Thx for your help

    M.D.

    #548523

    Hey!

    1.) You can use this for the post meta info:

    .avia-content-slider .slide-meta div, .avia-content-slider .slide-meta time {
        font-size: 18px;
    }

    2.) Add this in the functions.php file in order to increase the excerpt length:

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

    Regards,
    Ismael

    #548660

    Great, almooooooost done.
    Just could not get large font size for the category (eg. in the first post “Allgemein”). Any thoughts on that?

    For the records / for other users -> Correct code for increase excerpt length is:
    add_filter( ‘avf_postgrid_excerpt_length’,’avf_postgrid_excerpt_length_mod’, 10, 1);
    function avf_postgrid_excerpt_length_mod($length)
    {
    $length = 100;
    return $length;
    }

    … else you run in an parser as I did multiple times ;-)
    Thx again

    #548697

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    span.blog-categories.minor-meta {
        font-size: 18px;
    }

    Cheers!
    Yigit

    #548711

    Everything works now as intended. THANK YOU!

    #548714

    Hi!

    You are welcome!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Cheers!
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Larger Textblock for Blog (Grid Layout)’ is closed to new replies.