• Hi everyone!

    I run a gaming website on the Magazeen theme and while I love most aspects of the theme, I want to get rid of a feature that appears on each post I publish.

    As you can see on this example, there is a picture box in the top-right corner that I would prefer not to be there because it usually contains only a small portion of the whole image, looking unprofessional.

    This is a portion of the Single.php code (for the posts) that references the image:

    Which part should I cut out to get rid of the image box?

    Thanks so much for any help!!!

    Geoff

    </div><!-- End post-meta -->
    
    					<div class="post-box">
    
    						<div class="page-content clearfix">
    
    							<div class="clearfix">
    
    								<?php if( get_post_meta( $post->ID, "image_value", true ) ) : ?>
    									<div class="post-image-inner right">
    										<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><img src="<?php bloginfo( 'template_directory' ); ?>/timthumb.php?src=<?php echo get_post_meta( $post->ID, "image_value", true ); ?>&w=imagesx($image);&h= imagesy($image);&zc=1" alt="<?php the_title(); ?>" /></a>
    									</div>
    
    								<?php endif; ?>
    
    								<?php the_content( '' ); ?>
    
    								<?php wp_link_pages( array( 'before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number' ) ); ?>
    
    									<br />
    
    							</div>
    
    						</div><!-- End post-content -->

The topic ‘Editing A Post Image Feature?’ is closed to new replies.