• Resolved gijigogo

    (@gijigogo)


    I am trying to figure out how to position the lower nav links to the right. By default they are aligned to the left.

    Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi gijigogo. If you mean the main navigation try this css:

    #nav-header .container {
      float: right;
    }

    If you want to move the nav elements right in the mobile view, try this:

    @media only screen and (max-width: 719px) {
      .nav-wrap .nav li {
        text-align:right
      }
    }
    Thread Starter gijigogo

    (@gijigogo)

    Did the trick! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Nav Position’ is closed to new replies.