Title: Menu position
Last modified: August 21, 2016

---

# Menu position

 *  Resolved [robgon1971](https://wordpress.org/support/users/robgon1971/)
 * (@robgon1971)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/menu-position-4/)
 * Hi everybody,
 * I want to add a new menu item but i want to appear it on the right side of the
   menu bar, is it posibble?
 * Thanx a lot.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [ThinkUpThemes](https://wordpress.org/support/users/thinkupthemes/)
 * (@thinkupthemes)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/menu-position-4/#post-4229116)
 * Yes, this can be done. However, if you align a single item to the right then 
   you’ll have to also align the dropdown and dropdown text for that item so its
   doesn’t overflow. Assuming you still want the design to look neat and tidy.
 * Try the following code. Add this to the style.css file in your themes child-theme:
 *     ```
       .main-menu li:last-child {
       float: right;
       }
       .main-menu li:last-child ul.children {
       right: 10px;
       left: auto;
       }
       .main-menu li:last-child ul.children a {
       text-align: right;
       }
       ```
   
 * See how you find that. You can obviously adjust the styles to match what you 
   want, but this should be a starting point.
 * Afzaal
 *  Thread Starter [robgon1971](https://wordpress.org/support/users/robgon1971/)
 * (@robgon1971)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/menu-position-4/#post-4229117)
 * Thanx a lot,
 * And what happen for multiple items? Can be align to the right also?
 * Cheers.
 *  Thread Starter [robgon1971](https://wordpress.org/support/users/robgon1971/)
 * (@robgon1971)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/menu-position-4/#post-4229282)
 * Assign a name to the class name (to do that, go to Menus – Screen Options and
   check CSS Classes, expand the menu and input a name in CSS Classes combo) and
   add this code:
 * li.class-name {
    float:right!important; text-indent: -9999px; margin:4px; }

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Menu position’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/delicacy/1.2.8/screenshot.png)
 * Delicacy
 * [Support Threads](https://wordpress.org/support/theme/delicacy/)
 * [Active Topics](https://wordpress.org/support/theme/delicacy/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/delicacy/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/delicacy/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [robgon1971](https://wordpress.org/support/users/robgon1971/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/menu-position-4/#post-4229282)
 * Status: resolved