Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Pages showing up as index.php?id= Children
#8
I believe the core function automatically generates the following code:
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!
Reply


Messages In This Thread
Pages showing up as index.php?id= Children - by JWH_Matthew - 2010-10-25, 00:17:03



Users browsing this thread: 1 Guest(s)