Exforsys

Free Training

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 ...

Go Back   Exforsys > Programming Talk > Html

Exforsys.com

  #1 (permalink)  
Old 04-16-2009, 11:14 PM
Junior Member
 
Join Date: Apr 2009
Posts: 7
Surya100 is on a distinguished road
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 04-19-2009, 01:18 AM
Junior Member
 
Join Date: Nov 2006
Posts: 26
megabyte is on a distinguished road
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Multiple Menu Control in Master Page in asp.net 2.0 vedsharma Microsoft .NET 0 01-02-2009 06:21 AM
problem in menu ikdaigo ASP 1 05-14-2007 05:15 PM
Tutorial on Silk Test spriya279 Testing Tutorials 2 02-15-2007 07:31 PM
Solaris x86 FAQ 2/2 Dan Anderson Tech FAQ 0 04-27-2004 08:24 PM
[FAQ] FileMaker Pro - database for Macintosh and Windows Martin Trautmann Tech FAQ 0 04-17-2004 08:26 AM


All times are GMT -4. The time now is 09:25 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0
Copyright 2004 - 2009 Exforsys Inc. All rights reserved.