css to adjust menu titles to two lines
Hello,
I'm working onthe menu on the site here http://waterways.clearlineinteractive.com/real-estate-services/.
My client wanted the menu titles to be on two lines so I titled them similar to this PROBLEMS<span class="menu-break">& SOLUTIONS</span>
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?
Thank you,
Neil
Comments
we have much easier solution to break words into the new line:
PROBLEMS<br />&SOLUTIONS
and no css is needed Just <br /> tag between them.