View Single Post
Old 02-07-2012, 10:50 PM   PM User | #3
Sammy12
Registered User

 
Join Date: Jun 2011
Posts: 1,063
Thanks: 12
Thanked 241 Times in 240 Posts
Sammy12 is on a distinguished road
The word wrap is correct in the example you provided, nothing is breaking at the wrong points. You could try using:

Code:
#subleftcolumn li a {
   word-wrap: normal !important;
}
also the max-width and line-height you placed on the <a>'s doesn't do anything because the <a> tag is inline. You cannot set widths or heights on inline elements. Try setting it to display: block;

Code:
#subleftcolumn li a {
   display: block;
   word-wrap: normal !important;
}
Sammy12 is offline   Reply With Quote