Hi I have a responsive menu system that works great, but now I want to change the URLs positions in a different way, first take a look at my dropdown menu here..
Actually I need to give Main Menu 1, Main Menu2 and Main menu 3 to separate links like one for www.example1.com, one for www.example2.com.. Although I just want the dropdown function just above the right down arrow(nav_sprite.png) which you can't find in the jsfiddle example. You can see that in the below class
ul#menu li.hasChildren a > span {
background: url(../images/nav_sprite.png);
background-position: right 0px !important;
background-repeat: no-repeat;
background-size: 30px auto;
}
I tried to add another anchor tag like the following..and gave that tag to float:left and tried to add width 55px to the second anchor tag which for drop down and to the right side by given float:right. But it all collapses like hell.....
<li><a href="http://www.example.com">Main Menu 1</a><a href="#" tabindex="1" accesskey="h"> </a>
<ul>
....
Do you have any idea to resolve this?
Thanks Paul