Forums

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

Home Forums CSS Major Problem Trying To Get a Menu To Wrap To 2 Lines Reply To: Major Problem Trying To Get a Menu To Wrap To 2 Lines

#256669
Greg777
Participant

Just found this on another website that seems to describe what I’m trying to do:

My client wanted the menu titles to be on two lines so I titled them similar to this

PROBLEMS& SOLUTIONS

Then I added this css to make it on two lines and centered

span.menu-break {
display: block;
line-height: 0;
bottom: 35px;
position: relative;
}

#Top_bar #menu ul li a span {
text-align: center;
}

The problem is that this added a bunch on black space at the bottom of the menu. Is there a better way to do what I’m trying to do?