PDA

View Full Version : Border around album full sized pic


setishock
04-28-2013, 02:04 AM
4.1.2 pl8

See attachment first.
I have been in the CSS and templates trying to find what the white border is called so I can round off the corners. Is it really a border or a background with the pic sitting on it?
Either way what code controls it?

tbworld
04-28-2013, 07:05 AM
4.1.2 pl8
Either way what code controls it?

#picturelink img {
background: none repeat scroll 0 0 red;
box-shadow: -2px 2px 2px #000000;
padding: 10px;
text-align: center;
border-radius: 5px;
}

I think this is what you are looking for. :)

setishock
04-28-2013, 04:04 PM
I wound up doing this >

#picturelink img {
/* background-color:{vb:stylevar lightweightbox_background.backgroundColor}; */
background-color:gray;
border:solid 1px {vb:stylevar lightweightbox_border.borderColor};
border-radius:15px;
padding:{vb:stylevar padding};
text-align:center;
-moz-box-shadow: -2px 2px 2px {vb:stylevar picturelink_img_shadow_color};
-webkit-box-shadow: -2px 2px 2px {vb:stylevar picturelink_img_shadow_color};
}


Thanks