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
July 9, 2017 at 11:49 am
#256669
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?