I’ve been through the forums and tried many of the solutions suggested but I can’t get it to work.
I basically want the image to be displayed on the left and all the other info to be displayed on the right. I don’t want to use a sidebar on the page. Is there a workaround?
Hey youtea!
Thank you for using Enfold.
You can try the magazine element instead of the blog posts element.
Regards,
Ismael
Thanks, but I want to have the extract displayed too.
The current layout seems like a bug, it looks awful with the small thumbnail on it’s own with a long strip of colour next to it, and the content below.
https://www.dropbox.com/s/2fwuthoygs8cl7u/Screen%20Shot%202014-11-14%20at%2014.33.43.png?dl=0
I don’t use a sidebar on my page but want the entries to look like they do in your demo version “Blog Single Author Small” . The image appears on the left and the text next to it on the right.
https://www.dropbox.com/s/vax1v5kvmperpzw/Screen%20Shot%202014-11-14%20at%2014.35.42.png?dl=0
Hi!
Thank you for the update.
Set the Blog Style to Single author, small preview then add this on functions.php:
function avf_blog_style() { ?>
<script>
(function($){
$(window).load(function() {
var blog = $(".template-blog").length;
if(blog) $(".main_color.container_wrap").removeClass('fullsize');
});
})(jQuery);
</script>
<?php
}
add_filter('wp_footer', 'avf_blog_style', 10);
Best regards,
Ismael
I’m getting an error on the first line of the code you gave when I tried it.