JeffreyWay / Laracasts-Bugs

Exclusively for user-submitted bugs and errors at laracasts.com
9 stars 0 forks source link

Titles of the lessons are messing up the layout #78

Closed scrubmx closed 10 years ago

scrubmx commented 10 years ago

I think this could be solved with a simple CSS trick

Make the h3 tag of the titles truncate the text and show an ellipsis like this

h3{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

Maybe show the entire title on hover?

h3:hover{
    white-space: normal;
}
JeffreyWay commented 10 years ago

This has been resolved with the most recent design iteration. Thx.