The Demo
http://kriesi.at/themes/enfold/blog/blog-single-small/
I’m using AVIA LAYOUT BUILDER BLOG POSTS
Display entries from a custom taxonomy
Display entries from custom post-type category
On my site the text flows around the icon – all the way to the left – over the vertical dotted line.
attached link to screen shot
I have used FIREFOX firebug compare the DEMO site and my site.
I have to add “padding-left: 150px; ”
to
.content .entry-content-wrapper {
to make it look like your DEMO
however I shouldn’t need to do this – right ?
;)
Hi HuxburyQuinn!
Can you post the link to your website so we can look into it? Yes, you should not :)
Best regards,
Yigit
Hi!
Thanks for the nottice – we’ll fix this bug with the next update. For now open up wp-content/themes/enfold/includes/loop-index.php and replace:
$current_post['post_class'] = "post-entry-".$current_post['the_id']." post-loop-".$post_loop_count." post-parity-".$current_post['parity'].$current_post['last']." ".$blog_style;
with
$current_post['post_type'] = get_post_type($current_post['the_id']);
$current_post['post_class'] = "post-entry-".$current_post['the_id']." post-loop-".$post_loop_count." post-parity-".$current_post['parity'].$current_post['last']." ".$blog_style;
$current_post['post_class'] = ($current_post['post_type'] == "post") ? $current_post['post_class'] : 'post '. $current_post['post_class'];
Cheers!
Peter