Exforsys
+ Reply to Thread
Results 1 to 4 of 4

CSS Navigation Menu

This is a discussion on CSS Navigation Menu within the Html forums, part of the Programming Talk category; Hi Friends, how to create horizontal navigation menu using Html Lists and CSS? which attribute can i use for Horizontal ...

  1. #1
    Surya100 is offline Junior Member Array
    Join Date
    Apr 2009
    Answers
    7

    CSS Navigation Menu

    Hi Friends,

    how to create horizontal navigation menu using Html Lists and CSS? which attribute can i use for Horizontal List in Css?



    Thanks
    surya


  2. #2
    megabyte is offline Junior Member Array
    Join Date
    Nov 2006
    Answers
    23
    you can create navigation menu using Html list.For Example


    HTML Code :

    PHP Code:
    <ul id="menu">
    <
    li id="Current"><a href="#">Home</a></li>
    <
    li><a href="#">Products</a></li>
    <
    li><a href="#">Services</a></li>
    <
    li><a href="#">Contact Us</a></li>
    </
    ul

    CSS style for Menu for Vertical)

    ul#menu li {
    list-style: none;
    background-color: #039;
    border-top: solid 1px #039;
    text-align: left;
    margin: 0;
    }

    ul#menu li a {
    display: block;
    text-decoration: none;
    padding: .25em;
    border-bottom: solid 1px #39f;
    border-right: solid 1px #39f;
    }

    a:link, a:visited { color: #fff; }
    a:hover, a:active { color: #000; }




    CSS style for Menu for Horizontal )


    ul#menu li {
    list-style: none;
    background-color: #039;
    border-top: solid 1px #039;
    text-align: left;
    margin: 0;
    float: left;
    }

    ul#menu li a {
    display: block;
    text-decoration: none;
    padding: .25em;
    border-bottom: solid 1px #39f;
    border-right: solid 1px #39f;
    }

    a:link, a:visited { color: #fff; }
    a:hover, a:active { color: #000; }


    try this


    Thanks
    megabyte

    Last edited by megabyte; 04-19-2009 at 01:20 AM.

  3. #3
    Sam Jepsum is offline Member Array
    Join Date
    Dec 2010
    Answers
    34
    Make sure you preview your code in several browsers.. the code given will barf in IE.


  4. #4
    poojadreams is offline Junior Member Array
    Join Date
    Aug 2011
    Location
    Hyderabad
    Answers
    22
    It works fine in latest browsers. Check out once in IE6 and IE7


    •    Sponsored Ads



Latest Article

Network Security Risk Assessment and Measurement

Read More...