How To Align A Dropdown Menu To The Right

I have a page linked here:

And if you rollover the “Contact” button in the main menu, the dropdown menu appears. My issue is that I would like for just this dropdown to shift over so that the right side of the ul aligns with the right side of the Contact button. It currently aligns on the left side. Can anyone solve this one for me?

Todd Temple

Try this:

#nav li.contact ul {
  right: 0;
  left: auto;
}

Ralph,

It worked after I added the pseudo :hover to it. All is well except for that it looks like it bounces or shifts a pixel or two when you hover the cursor over the dropdown li. Do you see that on your end?

Try this:

#nav li.contact li a:hover {
  margin: 0;
}

That worked! Thank you so much!