is_home()?

I Inserted


<?php if ( is_home() ) { ?>
    <link rel="stylesheet" href="/nivo-slider/themes/default/default.css" type="text/css" media="screen" />

    <link rel="stylesheet" href="/nivo-slider/nivo-slider.css" type="text/css" media="screen" />
    <link rel="stylesheet" href="/nivo-slider/style.css" type="text/css" media="screen" />
<?php } ?>

into my header.php file as I’m trying to customize the home page

But those styles arent even linking (view the source)

Make different header.php for home page and call it from home.php

k, thanks…

Or try using

is_front_page() 

instead of

is_home()