• Hi!

    I’m working on jaypo.site88.net/blog and I’m trying to make my banner fit with a .gif based nav bar above it. However the nav bar has gaps in between the spliced buttons and doesn’t match up with the banner below. How can I fix that

    Thanks in advance.

Viewing 1 replies (of 1 total)
  • Your Nav code is messed up

    you have this

    <div id="navmenu">
    <li>
    <a href="/blog">
    <img src="/blog/wp-content/themes/default/images/blog.gif"
    alt="blog"></img></a>
    <a href="/blog/?page_id=2">
    <img src="/blog/wp-content/themes/default/images/about.gif"
    alt="blog"></img></a>
    <a href="/blog/?page_id=4">
    <img src="/blog/wp-content/themes/default/images/contact.gif"
    alt="blog"></img></a>
    </li>
    </div

    It should be something like this

    <div id="navmenu">
    <ul>
    <li><a href="/blog"> <img src="/blog/wp-content/themes/default/images/blog.gif" alt="blog"></img></a></li>
    <li><a href="/blog/?page_id=2">
    <img src="/blog/wp-content/themes/default/images/about.gif"
    alt="blog"></img></a></li>
    <li><a href="/blog/?page_id=4">
    <img src="/blog/wp-content/themes/default/images/contact.gif"
    alt="blog"></img></a></li>
    </ul>
    </div
Viewing 1 replies (of 1 total)
  • The topic ‘Header Margins/Width Are Too Small’ is closed to new replies.