Ahhh darn dreamweaver, I clicked validate document and it told me there were no mistakes.
I tried to download wamp and mamp before to test my wordpress themes but it never worked for me. Ill try it again soon and see if it works. I actually used the theme preview in wordpress and it showed a white screen but I thought it wasn't functioning right. Could you validate it for me If you have wamp already? Here is the php
`<?php
function childtheme_favicon() { ?>
<link rel="shortcut icon" href="<?php echo bloginfo('stylesheet_directory') ?>/images/favicon.ico">
<?php }
add_action('wp_head', 'childtheme_favicon');
// Hook into the area below the header
function secondary_header() { ?>
<?php if (is_front_page()) { ?>
<div id=”bghome”> </div>
<?php } else if(is_page['about']) { ?>
<div id=”about”> </div>
<?php } else if(is_page['team']) { ?>
<div id=”team”> </div>
<?php } else if(is_page['contact']) { ?>
<div id=”contact”> </div>
<?php
?>
<?php }
add_action('thematic_belowheader','secondary_header');
?>
'