PDA

View Full Version : Trying to change border color around pics


capitoljayhawk
Feb-05-2009, 01:37 PM
I'm at http://spiegs.smugmug.com.

I'm trying to change the color of the border around my pics in my galleries, including the addition of a brighter hover color and a different default color.

I put this code in, but it doesn't seem to work:

/* Change default image border color */
.imgBorder {
border-color: #996633;
}
a:hover img.imgBorder,
.imgBorderOn {
border-color: yellow;
}


Any pointers?

Thanks in advance.

DrDavid
Feb-05-2009, 01:48 PM
Use this instead:

/* Change default image border color */
.imgBorder {
border-color: #996633 !important;
}

a:hover img.imgBorder, .imgBorderOn {
border-color: yellow !important;
}