• I’m looking to customize/modify the default header provided by wordpress.

    I understand how to modify the images that make up the header, but what I want to do is create like a navmenu and intergrate that in to my header on the blog.

    Any help/direction would be greatly appreciated.

    -Brooklyn

Viewing 2 replies - 1 through 2 (of 2 total)
  • Wouldn’t it be simpler to find a theme you like with this already built in?

    You can do a google search and find nav menus that work with javascript or css if you really want to.

    you could make a menu within the header.php, just underneath the content div – eg:
    <ul id="menu">
    <li><a>" href="<?php bloginfo('url'); ?>">Home</a></li>
    <li><a title="About" href="#link#">About</a></li>
    <li><a title="Photos" href="#link#">Photos</a></li>
    <li><a title="Links" href="#link#">Links</a></li>
    <li><a title="music" href="#link#">Contact</a></li>

    make some pages in Admin, and put the links there to match
    then in your css, create #menu, add a hover tag, background, visited etc etc etc and you can have nice dynamic css made rollovers.
    nice & easy

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change default header to customized HTML header with buttons?’ is closed to new replies.