Forums

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

Home Forums CSS Vertical Dot Navigation – trying to make spans absolutley positioned. Reply To: Vertical Dot Navigation – trying to make spans absolutley positioned.

#278149
Beverleyh
Participant

Im having a big problem with trying to align my spans within the navigation.

Are you saying that you want the circles to be alongside the links, on the same line?

That can’t happen because divs are block elements and blocks want to be on their own line. They’ll push whatever is next to them (like your spans) onto the line below. Try changing them to inline-blocks instead.

Also try putting the margin on the li rather than the div circles.