Page 1 of 1

PBase framing

PostPosted: Wed Jan 07, 2009 7:15 pm
by danspend
How do I change the framing of my pics in my galleries? I don't like the black frame with the white trim.
Thanks
Dan

Re: PBase framing

PostPosted: Wed Jan 07, 2009 8:41 pm
by prinothcat
you will want to investigate "Style Sheets" as they control the overall presentation of your pages.

Re: PBase framing

PostPosted: Thu Jan 08, 2009 3:13 am
by dang
danspend wrote:How do I change the framing of my pics in my galleries? I don't like the black frame with the white trim.
Thanks
Dan

prinothcat is correct. Changes to the borders can be done in your style sheet CSS. Examples would be for thumbnails:
Code: Select all
TD.thumbnail
{
background-color: #000000;
padding: 10px;
vertical-align: middle;
width: 200px;
height: 220px;
border-style : double;
border-width : 12pt;
border-color : #ffffff;
}


Or if you want to change it on the image:
Code: Select all
.display
{

background-color: black;
padding: 5px;
border-top: 15px double #ffffff;
border-left: 15px double #ffffff;
border-bottom: 15px double #8F8F8F;
border-right: 15px double #8F8F8F;
}


You can change from a double, to a single border and colors within these sections of code. I highly suggest reading the first "Sticky" in the Forum here: viewtopic.php?f=8&t=13408
Have fun.