• Thanks so much for this theme – really wicked!

    Quick question – is there a way to move the navigation menu (primary menu) from the sidebar to somewhere on the top / top right? And make the list horizontal, instead of vertical?

    I’m guessing there’s an easy CSS fix for it, but I have no idea how.

Viewing 3 replies - 1 through 3 (of 3 total)
  • if not you could create a child-theme and use the wp_nav_menu function.

    to make
    li elements go side by side give them this css rule:

    li{
      display:inline-block;
    }

    to make the nav-menu go to the right of it’s parent element give it the following css rules:

    nav.parent-element ul{
      float:right;
      width:auto;/*? correct me if i'm wrong */
    }

    or:

    nav.parent-element ul{
      text-align:right;
    }

    … could do the trick too. There’s more than one way 🙂

    Thread Starter kooshizzle

    (@kooshizzle)

    Also, is there an easy way to exclude certain post categories from showing up on the post page? i.e. if I want to use posts to configure another plugin, but don’t want them to show up for the general public to see.

    I tried making the post private, except this prevented the category from showing in the plugin settings…so that didn’t work.

    Thread Starter kooshizzle

    (@kooshizzle)

    How would I go about creating the child theme and modifying that function?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Moving the Navigation Menu on the Top’ is closed to new replies.