How to build navigation menu, like of mozilla.org

Discussion in 'HTML & Website Design' started by nihangshah, May 17, 2008.

  1. #1
    I want to know how to build a navigation menu, which is used at mozilla.org

    [​IMG]

    Can anyone help, build one?
     
    nihangshah, May 17, 2008 IP
  2. twistedspikes

    twistedspikes Notable Member

    Messages:
    5,694
    Likes Received:
    293
    Best Answers:
    0
    Trophy Points:
    280
    #2
    Anchors and some css...there you have it.
     
    twistedspikes, May 17, 2008 IP
  3. zeldaze

    zeldaze Active Member

    Messages:
    311
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    60
    #3
    Nice graphics and hover attributes set up over an unordered list (<ul>)
     
    zeldaze, May 17, 2008 IP
  4. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Your HTML is going to look somewhat like this:

    
    <ul id="mneu">
    	<li>
    		<a href="#">Link Text</a>
    		<ul>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    		</ul>
    	</li>
    	<li>
    		<a href="#">Link Text</a>
    		<ul>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    		</ul>
    	</li>
    	<li>
    		<a href="#">Link Text</a>
    		<ul>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    			<li><a href="#">Link Text</a></li>
    		</ul>
    	</li>
    </ul>
    
    Code (markup):
    Show me how you want the menu to look (as in what images and colors YOU will be using, not what's in the example) and how wide you want it to be and I'll give you the CSS that goes with this.
     
    Dan Schulz, May 17, 2008 IP
  5. nihangshah

    nihangshah Prominent Member

    Messages:
    5,536
    Likes Received:
    271
    Best Answers:
    3
    Trophy Points:
    395
    #5
    Can anyone give me the CSS code, too?

    I need the menus, look exactly like the screenshot.
     
    nihangshah, May 19, 2008 IP
  6. Xabber

    Xabber Active Member

    Messages:
    437
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    58
    #6
    You know copying an existing websites layout is illegal? If you only want to learn from it, then go ahead. :)
     
    Xabber, May 19, 2008 IP
  7. nihangshah

    nihangshah Prominent Member

    Messages:
    5,536
    Likes Received:
    271
    Best Answers:
    3
    Trophy Points:
    395
    #7
    I just want to learn from it, then change that later. Still need a little CSS code.
     
    nihangshah, May 19, 2008 IP