• Resolved hankiman

    (@hankiman)


    How do i get a color inside the white box that surrounds the text and head picture on my site ? I want the same creamy color that surrounds it.

    How do I hide the titles of my pages ?
    for eksample I dont want “Home” to show up on the “Home” page.
    And i dont want “andre ting” to show up on the “andre ting” page

    My site:
    http://eft-terapeut.dk/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator keesiemeijer

    (@keesiemeijer)

    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. Is this what you want?

    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;

    Thread Starter hankiman

    (@hankiman)

    Thank you keesiemeijer

    Your advise solved both of my problems.

    Pep

    Moderator keesiemeijer

    (@keesiemeijer)

    Glad to have helped! Now, please use the dropdown at top right to mark this topic ‘Resolved’.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘2 Questiens about new default twentyten theme’ is closed to new replies.