• I use Freshy 2 for most of my client’s blogs or something with dropdowns. Are there themes with dropdowns and a header on the home page only or can you set CSS to have header only on homepage?

Viewing 1 replies (of 1 total)
  • sure you can have header on homepage only.

    if you are using WP 2.8+ change your body tag in header.php from
    <body> to
    <body <?php body_class(); ?>>

    you will now see code, on the homepage, like
    <body class=”home …otherclasses…”>

    you can now assign styling to homepage only by prefacing css with .home
    – example

    #header { background: url(images/header-for-not-homepage.jpg) }
    .home #header { background: url(images/header-for-homepage.jpg) }

    the first line applies to all pages including homepage
    the second line overides the first line when displaying the homepage because it is more specific.

Viewing 1 replies (of 1 total)
  • The topic ‘Header on Homepage Only’ is closed to new replies.