seejaykay Posted July 10, 2009 Report Share Posted July 10, 2009 I am following a video series I purchased on KIllersites to design my own Wordpress theme. It worked great but he did not cover how to insert a custom designed header into a custom Wordpress theme. Can any one help as to the proper php markup as well as how to reference my custom header. Thanks!!! Quote Link to comment Share on other sites More sharing options...
Susie Posted July 11, 2009 Report Share Posted July 11, 2009 The header is just inserted with XHTML and CSS. There's no special trick. And usually, it goes in the header.php file. If you still need help, maybe you could post the code you have so far or a link to your page? Quote Link to comment Share on other sites More sharing options...
seejaykay Posted July 11, 2009 Author Report Share Posted July 11, 2009 HI: Here is the header.php markup I have so far. Where do I insert the markup for my custom designed header? Thanks!! <?php wp_head(); ?> <?php bloginfo('name');?> <?php bloginfo('description');?> <?php wp_list_pages('title_li=');?> Quote Link to comment Share on other sites More sharing options...
Susie Posted July 11, 2009 Report Share Posted July 11, 2009 (edited) Well, I would put it here: <?php bloginfo('name');?> <?php bloginfo('description');?> <?php wp_list_pages('title_li=');?> And then you'll have to do some CSS work on the blog name/description to either display them on top of your header image or to hide them behind it. Edited July 11, 2009 by Susie Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.