I would like to add a list type to spice up my top nav which you can see at http://www.drinkpromo.com/new/game-cards.html
Its the white bar im wanting to spice up. I would like to add, like an arrow or someting.
The problem is finding where to put it in the css code.
here is the code
---
- Code: Select all
#navcontainer ul
{
position:absolute;
border: 1px solid #FFFFFF;
top:0px;
left:0px;
margin-top:0px;
padding-left: 0;
margin-left: 0;
background-color: #FFFFFF;
color: White;
font-family: Verdana;
font-size:10px;
width: 793px;
z-index: 60;
}
#navcontainer ul li { display: inline; margin:0px; list-style-type: square;}
#navcontainer ul li a
{
margin:0px;
padding: 0.1em 1em;
background-color: #FFFFFF;
color: #2C80B1;
padding-left:13px;
padding-right:14px;
text-decoration: none;
float: left;
border-right: 1px solid #FFFFFF;
}
#navcontainer ul li a:hover
{
background-color: #369;
color: #fff;
}
cheers


