HI:
Here is the header.php markup I have so far. Where do I insert the markup for my custom designed header?
Thanks!!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
<?php wp_head(); ?>
</head>
<body>
<div class= "canvas">
<div class= "header">
<h1><a href="<?php echo get_option('home'); ?>/"> <?php bloginfo('name');?></a></h1>
<h2> <?php bloginfo('description');?></h2>
<div class="nav">
<?php wp_list_pages('title_li=');?>
</div>
</div>