Primary Navigation items appear in reverse order

Homepage Community Forums Epik Theme Support Primary Navigation items appear in reverse order

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #13914
    HiNooril
    Customer

      My Primary navigation at (http://newlilypad.wpengine.com/) appears in the exact reverse order as it appears in how I set it up in Menus.
      Home is the last item in the navigation, for example. What?
      How in the world?

      #13935
      Wes
      Moderator

        On line 2274 you have float: right; which makes the menu items show up in reverse. You can change it back to float: left; and it will show up back to normal –

        .genesis-nav-menu .menu-item {
            float: right;
            list-style-type: none;
            margin: 0;
            padding: 0;
            text-align: left;
        }

        Change this to –

        .genesis-nav-menu .menu-item {
            float: left;
            list-style-type: none;
            margin: 0;
            padding: 0;
            text-align: left;
        }
        #13940
        HiNooril
        Customer

          Got it. Weird!
          I made that change because I couldn’t get the menu to right align.
          Now I see that I can change .genesis-nav-menu { to address the position of the right side.

          What do you use to see the line numbers?

          Thanks!!

          #13949
          Wes
          Moderator

            I use an HTML/CSS editor which is linked to FTP so I can make changes to the files and be able to undo any mistakes I make (which is something you can’t do with the WordPress editor). I have a mac and use something called Espresso. This program isn’t free, but there are plenty of programs out there that you could use that are free if you’re interested in setting this up.

            I use Filezilla for the FTP. You can contact your hosting company to see if they can help you get that setup if you want. They’ll be able to give you the login information that you’d need.

            #14077
            HiNooril
            Customer

              Thanks.

              If you don’t mind my asking, do you ever use WPide for coding?

              #14079
              Wes
              Moderator

                No I’ve never used that before. This is actually my first time hearing about it, so I’ll check it out to see what all it does.

              Viewing 6 posts - 1 through 6 (of 6 total)
              • The topic ‘Primary Navigation items appear in reverse order’ is closed to new replies.