Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #569982

    Hey,

    at first I want to thank you for your great theme.

    We are using for a clients website the version with menu in the left sidebar.
    Works great but the blog layout outputs too big or too small thumbnail images.
    How can we change the blog layout? We thought about the thumbnail on left side in a size like 300 x 300 px (or 1/3 of page width) only with title and excerpt on the right side so that we have a nice and simple thumbnail with a teaser text which hasn’t too long rows.

    We installed the child theme but we don’t know how to build the blog layout like we wish.
    Maybe you can help us.

    Thank you.
    Wist+Laumann

    #570039

    Hey wistlaumann!

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

    #top .fullsize .template-blog .blog-meta {
        float: left;
        width: 33%;
    }
    .html_header_sidebar #top .fullsize .template-blog .post .entry-content-wrapper {
        max-width: 66%;
        float: left;
    }
    .small-preview {
        width: 100%;
        height: 100%;
    }

    and then add following code to Functions.php file of your child theme in Appearance > Editor

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size['square'] = array('width'=>300, 'height'=>300);
    return $size;
    }

    and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Yigit

    #570105

    Thank you.
    Works fine after some small modification!

    #570119

    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 :)

    Have a great weekend!

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘New blog layout for site with left sidebar menu’ is closed to new replies.