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

    Hi,

    I’m using the Blog grid layout, Title and Excerpt, Blog Grid Columns set to 3 and Choose the preview image size manually and have it set to Square 180×180.

    I then uploaded a 180 x 180 pixel image and saved then updated the page but I am seeing a white background to the right of my image which I can’t understand.

    The page is at: http://dev.digitalessence.net/blog/ and it is the first blog with the WordPress logo.

    Also, I’d like to increase the amount of text included in the excerpt. Is this easy to find in functions.php?

    Thanks,

    Hedley

    #347389

    Hey DigitalEssence!

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

    article a.slide-image {
    background-color: transparent!important;
    }

    2- Please add following code to Functions.php file in Appearance > Editor

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

    Regards,
    Yigit

    #347689

    Thank you (again)

    Wish other Theme developers were as on the ball with support as you guys.

    #347716

    Hey!

    You are welcome Hedley, glad if we could help! Have a nice weekend :)

    Cheers!
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Trouble with Blog thumbnail sizes – white background’ is closed to new replies.