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
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
Thank you (again)
Wish other Theme developers were as on the ball with support as you guys.