Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter andeschurr

    (@andeschurr)

    You are absolutely wonderful – I pasted the style code insert in the Posts and the Categories templates (and wherever that annoying sidebar overlay showed up) and now it has all gone!!

    Thanks so much, I could not have done this without you – I wish you the best ??

    Thread Starter andeschurr

    (@andeschurr)

    Thanks Jay, I will certainly take you up on your offer!

    Are you able to explain what code I must add to the full-width page template which will enable this sidebar to be removed only on my posts?

    This is the code! Thank you for your time ??

    <?php
    /*
    Template Name: Full Width
    */
    ?>
    <?php get_header(); ?>
    
    <div id="container2">
    <div id="left-div2" style="width: 910px;">
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
    <!--Start Post-->
    <div class="post-wrapper" style="width: 900px;">
    <h1 class="post-title2"><?php the_title(); ?></h1>
    <div style="clear: both;"></div>
    
    	<?php if (get_option('ephoto_page_thumbnails') == 'on') { ?>
    		<?php $width = get_option('ephoto_thumbnail_width_pages');
    			  $height = get_option('ephoto_thumbnail_height_pages');
    			  $classtext = 'blogthumbnail';
    			  $titletext = get_the_title();
    
    		$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
    		$thumb = $thumbnail["thumb"];  ?>
    
    			<?php if($thumb <> '') { ?>
    				<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
    			<?php } ?>
    	<?php } ?>
    
    <?php the_content(); ?>
    <br class="clearfix"/>
    </div>
    <?php if (get_option('ephoto_show_pagescomments') == 'on') { ?>
    <div class="comments-wrapper">
    <?php comments_template('', true); ?>
    </div>
    <img src="<?php bloginfo('template_directory'); ?>/images/comments-bottom-<?php echo $ephoto_color_scheme; ?>.gif" alt="comments-bottom" style="float: left;" />
    <?php }; ?>
    <?php endwhile; ?>
    <!--End Post-->
    <?php else : ?>
    <?php include(TEMPLATEPATH . '/includes/no-results.php'); ?>
    <?php endif; ?>
    </div>
    
    </div>
    
    <div id="bottom">
    <?php include(TEMPLATEPATH . '/includes/footer-area.php'); ?>
    </div>
    
    <?php get_footer(); ?>
    
    </body>
    </html>
    Thread Starter andeschurr

    (@andeschurr)

    Thanks for your nice comments!

    Unfortunately, I am still using one element of the Sidebar – you will see it on the home page – https://www.littlecracker.tv/ – there is the Contact information on the right-hand side.

    I still need to keep that ??

    Thread Starter andeschurr

    (@andeschurr)

    Thank you so much Jay, you are a real gentleman for helping!

    It has still not removed the navigation list but at least it is now no longer over the top of other text.

    Would you know how to get rid of it completely?

    Cheers!

Viewing 4 replies - 1 through 4 (of 4 total)