Quote:
|
because the links that I want to be nesting is not nesting
|
Thats because your sub cat <li> links are outside of the <ul>s
a few minutes playing time gets this
HTML Code:
<div id="navcontainer">
<ul>
<li id="active"><a href="#" id="current">Home</a></li>
<li><a href="#">Company Profile</a></li>
<li><a href="#">Properties for Sale</a></li>
<ul class="level_2">
<li><a href="#">Sydney</a></li>
<li><a href="#">Melbourne</a></li>
<li><a href="#">Brisbane</a></li>
<li><a href="#">Bali,Indonesia</a></li>
<li><a href="#">Re Sale</a></li>
</ul>
</ul>
<ul>
<li><a href="#">Commercial Properties</a></li>
</ul>
<ul class="level_2">
<li><a href="#">Sydney</a></li>
<li><a href="#">Melbourne</a></li>
<li><a href="#">Bali</a></li>
</ul>
<ul>
<li><a href="#">Location Maps</a></li>
<li><a href="#">Property Management</a></li>
<li><a href="#">Migration</a></li>
<li><a href="#">Finance</a></li>
<li><a href="#">Lawyer/Solitor</a></li>
<li><a href="#">Travel/Accomodation</a></li>
<li><a href="#">Calculators</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Disclaimer</a></li>
</ul>
</div>
CSS Changes
HTML Code:
#navcontainer ul
{
list-style: none;
margin: 0;
padding: 0;
border: none;
}
#navcontainer ul.level_2 {
text-indent:30px;
}
#navcontainer li a
{
display: block;
/*padding: 3px 3px 2px 0.1em;*/
background-color: #950014;
color: #fff;
text-decoration: none;
width: 100%;
}
/* #navcontainer li a { width: auto; }*/
#navcontainer li a:hover
{
background-color: #cc6633;
color: #fff;
}
http://www.candsdesign.co.uk/article...nordered-list/
you have several items with the same id of "navlist" only ONE element can have that ID, for several identically styles elements you should use class
Quote:
|
when I click to one of my button its go to the same page with tothe other but directly going to the bottom page/middle page
|
No idea we can't see the code you have used.
But I would suspect it's because that's where the only named anchor is.
A url would give us more of a chance.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
|