How to create a navbar for a network of sites?

Discussion in 'HTML & Website Design' started by Custard, Sep 2, 2006.

  1. #1
    Hi,

    I run a network of sites and I would like to tie them together into a netwoek using a navbar similar to the one seen at the top of http://www.gameforum.com/ .

    Can anybody advise me as to how to achieve this?

    Is there a specific script out there somewhere?

    Thanks.
     
    Custard, Sep 2, 2006 IP
  2. Mike S.

    Mike S. Well-Known Member

    Messages:
    468
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    110
    #2
    Alright, all they did was make a table at the top of the page, which included a background image. There are other things you can include, but the background is the main thing. Then they included a list selector, which linked up to the links. Use this code:

                <select name="list" onChange="MM_jumpMenu('window.open()',this,1)" class="field">
                  <option value="javascript://" selected>-- Forum Network --</option>
    <option value="http://www.link1.com">Link 1</option>
    <option value="http://www.link2.com">Link 2</option>
    <option value="http://www.link3.com">Link 3</option>
    <option value="http://www.link4.com">Link 4</option>
    <option value="http://www.link5.com">Link 5</option>
    </select>
    Code (markup):
    This should work, if you have any questions, just ask them here.

    Just remeber to make a div or table, and work apply a background image, etc. If you don't knwo how to do this, I can give more indepth detail. Feel free to PM me.
     
    Mike S., Sep 2, 2006 IP