• thenextlevelballplayer

    (@thenextlevelballplayer)


    Hi,
    I love the custom navigation menu available now, but I would like to place one link in the menu on the right side of the menu, while the rest stay left-oriented still.
    I am using a child theme of twentyten.


    Here is my theme.

    Specifically, I would like the ‘Subscribe via Email’ link to be on the right side of the nav menu, while the rest of the items stay put.

    Any help would be awesome. I’m pretty new to wordpress.
    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • in your CSS try

    #nav li:last-child {
    position:relative;
    float:right;
    }

    Thread Starter thenextlevelballplayer

    (@thenextlevelballplayer)

    Thanks for getting back to me.
    Not sure if I’m doing something wrong or not, but that is not working. I tried putting it at the end of the Navigation section, and at the bottom of the css.

    My apologies that I shot that reply back without looking at your code and assuming your setup. The actual select you should be targeting looks to be #menu-menu. With this at your target your css should be:

    #menu-menu {
    width:928px;
    }

    #menu-menu li:last-child {
    position:relative;
    float:right;
    }

    Hope that works! Also, you should probably d/l firefox’s firebug. It’s an amazing tool for working on and figuring out items like this.

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