Quote:
Originally Posted by claystation
I do have a problem though, my thumbnails are bigger then the white background box behind them and the text that goes with the pictures gets cut off?
|
This modification just pulls CSS the way vBulletin does the album templates by default (which is pretty nasty right now IMHO). It's not the fault of this mod.
If you want to make some adjustments, these two values will probably help point you in the right direction. Use values you want, then just stick them in your additional.css template so they override built-in values:
.albumlist_entry
#thumbnails li .picture
As an example only, mine are currently set to:
Code:
.albumlist_entry {
float:left;
height:200.04px;
margin-bottom:20px;
margin-left:25px;
margin-top:20px;
padding:0 15px 10px;
text-align:center;
width:150px;
}
#thumbnails li .picture {
display:block;
height:150px;
padding:10px;
width:150px;
}