[Solved] Layout issue

A layout issue that annoys me: look at the bottom of the album list.

image.png

This is easily fixed by adding this css declaration:

#lib.content li {
overflow: hidden;
}

or even better: remove the height: 22px to let the box adjust to the text.

Hi and Thanks!

I was just investigating this problem and was going to post a bug but your fix worked perfectly. For others having this issue, the file to be edited is /var/www/css/panels.css

Look for the block of code listed below and delete the line - height: 22px; then refresh the Library page to see the nicely wrapped text.

#lib-content li {
display: block;
position: relative;
height: 22px;
margin: 0;
border-bottom: 1px solid #111D29;
cursor: pointer;
color: #ddd;
font-size: 13px;
text-align: left;
font-weight: bold;
}