Hi guys
I need to change the navigator bar from left to right.
Is it even possible?
And if it is, please advice.
i am using :acquia-drupal-win-1.2.26-5265.15068" version
Thanks

Comments

nomonstersinme’s picture

Hey its possible.. the easiest way would be to edit style.css line 227 and float nav items to the right instead of left:

#navigation ul li {
  float: right;  /*----change to right---*/
  line-height: 1.7em;
  list-style-image: none;
  list-style: none none;
  margin: 0px 10px 0px 0px;
  padding: 0px;
  position: relative;
  z-index: 999;
}

This will reverse the order of your menu items but you can easily solve that by reordering them in the ui.

If you need a better solution let me know :)