• Since you have to renew a 1 year subscription even just to access their theme support I am in the dark on how to solve this problem with ePhoto template.

    The problem?

    I get an ‘overlay’ navigation sidebar on the righthand side (search/pages/archives/categories) that I can not seem to remove:

    https://www.littlecracker.tv/slider/film-and-television-content-for-the-international-market-with-a-special-interest-in-asiapacific/

    On all the other pages I’ve made the template ‘full width’ and that has avoided this problem.

    However I can’t see that option for Posts (which is what this page is).

    I thought I might just hide the sidebar altogether in style.css but I need it to show the download CV and Contact options on the home page (they use the Sidebar).

    Your help is greatly appreciated!

    Ande (on behalf of the owner)

Viewing 13 replies - 1 through 13 (of 13 total)
  • Add this custom css, I hope it’ll solve your problem.

    div.post-wrapper {
    width: 647px;
    }
    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!

    Oh sorry so you want to get rid of the side bar? I thought you wanna have sidebar + content ??

    Here we go. Make sure you place this css style in the full-width page template. Else it’ll hide the sidebar throughout the site.

    div#sidebar {
    display: none;
    }

    Don’t worry these are small fixes for a WP developer with 5 year experience lol :). Oh btw your site looks awesome. Keep up the good work.

    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 ??

    Oh thats sad. I suggest that you create a new template for that full width page and add the no style bar style to that page. That would fix your problem. It’s a bit technical. Let me know if I can help you out on your server or something.

    Regards,
    Jay

    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>

    hey try this one and see whether it fixes your issue. Make sure to back up your page template though ??

    <?php
    /*
    Template Name: Full Width
    */
    ?>
    <style>
    div#sidebar {
    display: none;
    }
    </style>
    <?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)

    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 ??

    Thanks my pleasure ?? If you need any help in future feel free to catch me at [ redacted ]

    Cheers
    Jay

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Jay? Honestly Thanks for helping out but do not post your email address on these forums again. That behavior is actively discouraged.

    I’ve deleted your email address from the post.

    Ouch… Didn’t realise I was doing a crime. Sorry about it :S

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    “Crime” isn’t the right word but thanks for your understanding. ??

    Cheers ??

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Elegant Themes will NOT help me’ is closed to new replies.