Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Help positioning links over background image Re: Help positioning links over background image

#92645
Senff
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;
}