2010-10-25, 00:17:03
I believe the core function automatically generates the following code:
with that being said, you will need to add the following to your css:
I added the a:href to your last css style and I added a new style with the .current class attached to the end.
Let me know if this works, if not I will need a link to your page or a copy of the produced navigation.
Code:
<ul>
<li class="current"><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
</ul>
with that being said, you will need to add the following to your css:
Code:
#nav {
width: auto;
height: 40px;
float: right;
margin-top: 40px;
}
#nav ul {
display: block;
}
#nav ul li {
display: block;
float: left;
margin-left: 10px;
font-size: 15px;
}
#nav ul li a {
display: block;
height: 40px;
padding: 0 7px 0 7px;
color: #FFB777;
text-decoration: none;
font-size: 15px;
line-height: 40px;
}
#nav ul li a:hover {
color: #fff;
border-bottom: 1px solid #fff;
}
#nav ul li a .current {
color: #CCC;
border-bottom: 1px solid #fff;
}
I added the a:href to your last css style and I added a new style with the .current class attached to the end.
Let me know if this works, if not I will need a link to your page or a copy of the produced navigation.
JWH Technologies
Have any marketing ideas for Get-Simple? Let me hear them!
Have any marketing ideas for Get-Simple? Let me hear them!