Simple question, having trouble with wordpress page menu

Hey guys, I’ve just about got my site complete, but I’m having a bit of difficulty with the navigation menu at the top

my site is http://www.travismcdonald.com/

basically, the menu always shows the “home” link on the right hand side. I want it to always be on the left hand side. I don’t care about the order of the other links.

Any help is greatly appreciated.

I tried to figure it out myself, I know it has to do with wp_list_pages, and sort_column in header.php - however, the variables for those seem to affect the order of all the other items, but not “home”

help?

Go to your CSS and change this:

#catmenu li {
float:left;
line-height:88px;
list-style:none outside none;
margin:0;
padding:0;
}

To this:


#catmenu li {
float:right;
line-height:88px;
list-style:none outside none;
margin:0;
padding:0;
}

thanks man, that fixed it