i'm trying to create a horizontal navigation which is aligned to the right side of the parent element. You can see the navigation at http://kaffeeprinzen.jag-aelskar.de/ where it says "Espresso".
My HTML is:
<ul id="menu-standard">
<li id="menu-item"><a>Item 4</a></li>
<li id="menu-item"><a>Item 3</a></li>
<li id="menu-item"><a>Item 2</a></li>
<li id="menu-item"><a>Item 1</a></li>
</ul>
My CSS is:
.menu li {
float: right;
margin-left: 20px;
}
It works like this, the only problem is that the order in the list is wrong. The first item is the last one in the html code.
Any tips for me? Thanks a lot! Yannis