Home › Forums › CSS › Help positioning links over background image › Re: Help positioning links over background image
December 13, 2011 at 4:47 pm
#92645
Participant
If the wrapper is full width, and the top bar is centered, then you can make the two menu items position correctly by using something like this (may need to add some margins on top and left):
#top-nav-container {
width: 200px;
left: 50%;
position: absolute;
margin-left: 200px;
}