Forums

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

Home Forums CSS Positioning menu/sections to be horizontal Reply To: Positioning menu/sections to be horizontal

#201329
timbarden
Participant

Hi,

Looking at http://www.sarahmdoonan.com/ if you add display: inline-block to your four <ul>s that’ll give you the desired result, but really you shouldn’t have each list item in its own <ul>.

Should just be something like this, with display: inline-block added to the lis:

<ul>
<li><a href="/see/">See</a></li>
<li><a href="/know/">Know</a></li>
<li><a href="/experience/">Experience</a></li>
<li><a href="/live/">Live</a></li>
</ul>