Log in

View Full Version : need some help with nav. css



piritexel
04-22-2011, 01:38 PM
well I looked all over the internet but I couldn't find anything I was looking for
I like this style: http://www.dynamicdrive.com/style/csslibrary/item/sleek-pointer-menu-2/

but I want to mix it with like current msn nav style (i don't need any drop nav like in msn)

thanks in advance for help, waiting for reply

piritexel
04-23-2011, 03:40 PM
is there something wrong with this code before i copy&paste it to blogspot?

<html>
<head>
<style type="text/css">

ul#list-nav {
list-style:none;
margin:0;
padding:0;
width:525px
}

ul#list-nav li {
display:inline
}

ul#list-nav li a {
text-decoration:none;
padding:0;
width:100px;
background:BLUE;
color:#eee;
float:left;
text-align:center;
}

ul#list-nav li a:hover {
background:#FFFFFF;
color:BLUE;
}

</style>
</head>

<body>

<ul id="list-nav">
<li><a href="#">BLOG</a></li>
<li><a href="#">RSS</a></li>
<li><a href="#">TWITTER</a></li>
<li><a href="#">ARCHIVE</a></li>
<li><a href="#">ABOUT</a></li>
</ul>

</body>
</html>