The primary menu is sorting in descending weight order rather than ascending weight order.

Comments

jmarkantes’s picture

I started looking into this and believe it has to do with the css, not really with the theme code. I'll try to look further in a couple of days when I get time but if anyone else has some ideas, go for it.

Jason

juroon’s picture

I had this exact same problem. I apparently made some modifications to my CSS (different theme - Skymod) that I had forgotten or didn't know about. It nearly drove me crazy until I finally did a compare between my modified CSS and the original. I had tried out a menu module, and somehow in that process, Skymod's style.css line 308 got changed.

I had:

#header .navigation .links li {
float:right;
}

And it should have been:

#header .navigation .links li {
float:left;
}

I fixed it and my menu reversed right back. Maybe you've got something similar going on.

jmarkantes’s picture

Oops, forgot to post a fix back here. I added this line:

#primary ul{
        float:right:
}

And changed the "#primary a" float attribute:

#primary a {
  text-align:center;
  color: #deff61;
  float: left;
  text-decoration:none;
  font-family:'Unicode',Helvetica,Verdana,Arial,Tahoma,sans-serif;
  padding:0;
  background: url('images/nav_tab_right.png') no-repeat bottom right;
  margin-right:10px;
}
Alan Cooney’s picture

Assigned: Unassigned » Alan Cooney
Status: Active » Fixed

Fixed in dev version, please test.

Alan Cooney’s picture

Status: Fixed » Closed (fixed)