Hi,
Could you please take a look at our blog page (link in private box)
As you may see, the last post is not aligned properly among others. How could it be fixed?
Thanks,
Sadegh
Hey Sadegh,
This is caused by the image sizes being different. If you make the microphone image to be the same size as your other images, they will align.
Alternatively, you can also use this in Quick CSS:
.avia-content-slider-1 .slide-image {min-height:147px; background: #ffffff !important;}
This forces your image div to have be the same minimum height so that the text after them will be aligned.
Best regards,
Sarah
Hi Sarah,
You’re right, I thought they have same size, thanks :)
By the way, we created this post (microphone) using advance layout. That is why I think it doesn’t show a short text and summary like the other posts we created with default editor.
Is there any way to fix that?
Hi!
Please click “Screen options” on the top right corner and check “excerpt” and then scroll below your content and add your excerpt manually into Excerpt field :)
Regards,
Yigit
Hi dear Yigit,
Thanks for that. Is there any way to have automatic limitations on the length of the Expert field? (like the ones created by default editor)
Hey!
Please try adding 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;
}
Best regards,
Yigit
Thank you dear Yigit :)
Regards,
Sadegh
(you may now close the thread please)