I have two problems
1) My blog content ( article) is showing its full length. I would like to make it appear short showing only the excerpts.
2) A blank grey box appears near the title of the blog on the lefthand side. How to remove it ?
My website link is : http://www.sriniinstitute.org/blog/
Hi Srinivasen!
1. Open up /enfold/includes/loop-index.php and change line 8 from this.
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
To this.
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "excerpt";
2. Add this to your custom CSS.
.post_author_timeline, .blog-meta { display: none !important; }
Best regards,
Elliott