BuilderChild-Classen
From IThemes Codex
Contents |
How to remove the left box and put the Date, Author etc at the bottom of the post in text
Edit child theme's index.php, archive.php and single.php. Move meta info to your desired location in these template files.
Edit child theme's style.css to set display of ".leftmetabox" to none.
Sample CSS added at end of style.css
The sample code above results in changing
to
How to fix distortion of featured image in single posts
Note: This applies to Classen 2.0.0 to 2.0.2.
Edit wp-content/themes/BuilderChild-Classen/single.php.
Change
<div class="front-page-thumbnail"> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail( 'front-page-thumbnail' ); ?></a> </div>
to
<div class="left-meta-thumbnail"> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail( 'left-meta-thumbnail' ); ?></a> </div>

