Got to your "search.css" template, and edit your "searchtitle" class to read:
Code:
.searchtitle {
font-size:{vb:stylevar font.fontSize}{vb:stylevar font.units};
padding:6px 0 2px;
/*height: {vb:math {vb:stylevar font.fontSize}{vb:stylevar font.units} * {vb:stylevar line_height}};*/
height: auto;
overflow: hidden;
}
This will allow the element to grow as needed.
edit: I found a couple of other CSS tweaks are needed...
Go to "threadlist.css" and locate:
Code:
.threadbit .alt {
background: {vb:stylevar threadbit_alt_background};
}
And change it to read:
Code:
.threadbit {
background: {vb:stylevar threadbit_alt_background};
}
Then got to "additional.css" and add:
Code:
.inner .author {
margin-bottom: 5px !important;
}