I'm working on a video site at the moment and a lot of the titles are longer than they should be. The page layout breaks if the title is longer than 2 lines. This happens in many different places on the site.
By layout breaking I mean, it looks messed asymetric, things don't line up right. So what is the better way to handle these long strings. If I use truncation, then almost everything seems to get truncated and I have those "..." at the end of everything.
On the other hands setting a fixed height and using overflow hidden looks better but it obviously doesn't tell the user that there is more to the title and abruptly ends. So what is the better option do you guys think?