Menu item to far right?
-
I was wondering if you can make a menu item set to the far right side. I am trying to get the “order now” menu item to rest at the far right of the nav bar. I’ve played around with css code
.menu-item-676 {
float: right;
}
as well as#menu-item-676 {
float: right;
}neither seem to be working. thoughts?
The blog I need help with is: (visible only to logged in users)
-
The code below should do the trick for you
.page_item.page-item-676 {
position: absolute !important;
right: 0;
} -
- The topic ‘Menu item to far right?’ is closed to new replies.