• In the Child Theme I have:

    #branding {
    	...
    	background-image:url(img/header_Book_bg2.png);
    	...
    }

    Need all the other Pages and Posts to have a different background-image, with a different height.

    maybe something similar to this, but I don’t know how to customize it – Don’t know enough php 🙁

    <body <?php
    if (is_front_page())
    {?>
    
    style="background: red;"
    
    <?php } else { ?>
    
    style="background: blue;"
    <?php } ?> >

    PLEASE HELP!

    Thank You 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • In your child theme you need (3) custom php files to make this work.

    front-page.php
    header.php
    custom-header.php

    front-page.php uses custom-header.php and all other templates use header.php.

    You will of course need the graphic and some CSS work also.

    Thread Starter vlau

    (@vlau)

    OK, I will try that.

    THANKS!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Twenty Eleven – need 2 different HEADER #Branding background images’ is closed to new replies.