Having trouble right justifying my top tab bar. Right now its centered and I want it over on the right. Anyone see how to fix that in my code? Home, About, Recommended, Social, Services, Contact http://clutchtechnology.net/
If you are trying to move your navigation bar (Which I think is what you are talking about) this moves it to the right and aligns it with the bottom of the logo. #nav_bar { background-color: white; float: right; font-size: 12px; color: #666; width: 550px; margin-top: 35px; } Code (markup):
use float:right; in your top tab bar div container. this will align your top tab bar to the right. there's another way which is float:left; then use margin-left to move your top tab bar to the desired position. I recommend you use the 1st method
#nav_bar { background-color: white; color: #666666; float: right; font-size: 12px; margin-top: 60px; padding-left: 75px; } Code (markup): I have just been using Firebug in FF and have come up with this Seems to work. If it is too far right then lower the Padding value