I think you use a static front page so “Home” is just the page title. look in your page.php for: <?php if ( is_front_page() ) { ?> <h2 class="entry-title"><?php the_title(); ?></h2> <?php } else { ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php } ?> And delete these lines. This means that you don’t show any titles on pages. Change the color in your theme’s stylesheet: style.css look for: #wrapper { margin-top: 20px; background: #fff; padding: 0 20px; } remove the line: background: #fff; or replace with background-color: #fcdaab;
I think you use a static front page so “Home” is just the page title. look in your page.php for:
<?php if ( is_front_page() ) { ?> <h2 class="entry-title"><?php the_title(); ?></h2> <?php } else { ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php } ?>
And delete these lines. This means that you don’t show any titles on pages.
Change the color in your theme’s stylesheet: style.css
look for:
#wrapper { margin-top: 20px; background: #fff; padding: 0 20px; }
remove the line: background: #fff; or replace with background-color: #fcdaab;
background: #fff;
background-color: #fcdaab;
keesiemeijer on "2 Questiens about new default twentyten theme"