Help with navigation

kangomedia

New Member
You may want to change the order of your divs and place "navigation" before "content". Or you can do the following:

Change:
ul.navigation {
width: 600px; height: 25px; float: left; text-align: center;

}

ul.navigation li {
display: inline-block;
margin-left: 10px; padding: 15px 20px;
}

Replace with:

ul.navigation {
width: 600px; height: 25px; float: left;
position:absolute;
margin-top:-250px;
margin-left:250px;
}

ul.navigation li {
display: inline;
margin-left: 10px; padding: 15px 20px;
}

Hope that helps.

Freddy Rodriguez
 

cmjvulavala

New Member
I know the problem is fixed but i would try changing the order of the divs as well because that is a better solution to the problem... aboslute positioning is a bit variable and doesnt really cater for many different screen sizes etc.
 
Top