• I am currently working on a wordpress website which has a menu which displays its contents on the left. I would like to switch this to the left. Is this part of the float function? It is only the text that I would like to align to the right not the menu itself. Any help would be greatly appreciated…

    Website URL: beadletd.dx.am

    Thanks!

Viewing 1 replies (of 1 total)
  • Add your theme style.css

    #mainmenu .container {
      background: -moz-linear-gradient(center top , rgba(247, 247, 247, 1) 0%, rgba(13, 13, 13, 1) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
      border: 1px solid #0d0d0d;
    }
    ul#mainmenu-menu {
      display: inline-block;
      float: right;
      position: relative;
    }
    .clear{ clear:both; }

    Update your header.php menu section

    <ul id="mainmenu-menu">
    .
    .
    .
    </ul>
    <div class="clear"></div>
Viewing 1 replies (of 1 total)
  • The topic ‘Switching Menu from the Left to the Right’ is closed to new replies.