I am trying to create a blog page (just the header logo) with no sidebar and no navigation bar. I created a page-nosidebar.php file and a test page at http://YourBabyGenius.com/test-page-2 but there is a green navigation bar I don't know how to get rid of. Can anyone identify what I have to eliminate from the following code??? <?php /* Template Name: Page Template (No Sidebars) */ ?> <?php get_header(); ?> <div id="contentleft" style="width:100%;"> <div id="content" style="width:100%;"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="singlepost"> <div class="post clearfix maincontent" style="margin-bottom:0;" id="post-<?php the_ID(); ?>"> <div class="entry clearfix"> <h1><?php the_title(); ?></h1> <?php the_content(); ?> </div> </div> </div> <?php endwhile; endif; ?> </div> </div> <?php get_footer(); ?> ******* Thanks for your help. Robert
Look in the code for <div id="topnav" Code (markup): From there to <div id="page" Code (markup): you want to delete. (Don't delete the <div id="page" line - the last line you'll delete will be </div>)