Quote:
Originally Posted by Black-CA
@HCGB
I like your mod. Is it possible to change height or wide to get the whole information in one lane below the pictures? Separated for example - First ==> Album: "Title of the album"
- Second ==> by: "username" on "Date"
Attachment 115474
|
As there's no character limit to album titles, I also see the overrun of text at the base of the album placeholder. So, a quick workaround is to modify the CSS...
In:
album.css
#latestalbumcontainer li
Find:
Code:
height:{vb:math {vb:raw vboptions.attachthumbssize} + {vb:stylevar font.fontSize}*{vb:stylevar line_height}*2 + {vb:stylevar small_fontSize}*{vb:stylevar line_height}*2 + {vb:stylevar padding} / 2};
Replace with:
190px I've found is ample on my test installation.
Hope this helps in the meantime
Addendum:
.albumlist_entry {
float:{vb:stylevar left};
margin-{vb:stylevar left}:{vb:math {vb:stylevar padding} *2 +5};
margin-top:{vb:math {vb:stylevar padding}*2};
padding: 0 {vb:math {vb:stylevar padding}+5} {vb:stylevar padding} {vb:math {vb:stylevar padding}+5};
text-align:{vb:stylevar left};
display:block;
width:{vb:raw vboptions.attachthumbssize}px;
height:{vb:math {vb:raw vboptions.attachthumbssize} + {vb:stylevar font.fontSize}*{vb:stylevar line_height}*2 + {vb:stylevar small_fontSize}*{vb:stylevar line_height}*2 + {vb:stylevar padding} / 2};
overflow:hidden;
border: {vb:stylevar albumlist_entry_border};
background:{vb:stylevar albumlist_entry_background};
-moz-box-shadow: -2px 2px 2px {vb:stylevar shadow_color};
-webkit-box-shadow: -2px 2px 2px {vb:stylevar shadow_color};
}
Alter the line in red to whatever height suits e.g.
height:190px;