Hello! I would like to remove the testimonial from the home page and extend the featured blog content section to show last 5 entries instead of 3. Is it possible? I've also noticed the homepage blog content section does not show posts if there's not an image associated with them. Can you help with this too? Can we use a standard picture for those blog entries? Many thanks in advance. Regards, JAG Edit: I've partially solved my problem. Removed the testimonial by adding Code: .feature_testimonial { display: none; } to the custom css in the theme options. I have specified the # of last entries displayed on the home page through the options panel (set to 5) but the pagination is wrong. I want the latest posts displayed 5 in a row fullwidth. Currently the latest posts are displayed in 2 lines 3 + 1. Please see the screenshot: http://img197.imageshack.us/img197/1/vf2c.JPG I also still have the issue with posts not displayed when image is missing.
Hello, It is the feature of our theme to display excerpt view of latest blog post on the home page and the latest post that contains the image(s) will only display on the home page. To edit remove the testimonial and make the Latest blog section throghout fullwidth, Go to the front page.php file present in the theme directory and edit the code as instructed in the image given below. Now , Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) Code: .featurebox .blog_item { margin-right: 15px; } You can adjust the value of "margin-right" as per your requirement. This will solve your issue.