Forums

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

Home Forums CSS CSS horizontal menu Re: CSS horizontal menu

#54091
TheLeggett
Member

Since the LIs are display: inline, giving them height won’t do anything. You could use display:inline-block to make that work.

You could also make them display: block, and float them left.