How do you move the blue quick links in the theme header from the right over to the left and so that they aren't in reversed order?

Comments

Mad Maks’s picture

moving the tabs to other site is a lot of css edditing, remove the reverse order is simple: remove _reverse in the code

 <?php if ($primary_links) : ?>
     <ul id="primary">
      <?php foreach (array_reverse($primary_links) as $link): ?>
       <li><?php print $link; ?></li>
      <?php endforeach; ?>
     </ul>

in the page.tpl.php

Mad Maks’s picture

Status: Active » Closed (fixed)