coppermine-gallery.com/forum

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: Rydel on August 30, 2004, 10:39:15 PM

Title: How to change this table bg color?
Post by: Rydel on August 30, 2004, 10:39:15 PM
How do I change this table backround color? (The one that is still white).

http://vplane.com/gallery/
Title: Re: How to change this table bg color?
Post by: mstralka on August 31, 2004, 12:13:24 AM
If you are referring to the white space behind each thumbnail, open:
themes/<your theme>/style.css and find:


.image {
..
.
.
.


Change the background color there. 

FYI - I figured this out by going to your page, clicking "View Source", and then finding the thumbnail.  Its style is class="image", which told me what to look for in style.css.
Title: Re: How to change this table bg color?
Post by: DaMysterious on August 31, 2004, 02:16:49 AM
Quote from: Rydel on August 30, 2004, 10:39:15 PM
How do I change this table backround color? (The one that is still white).

http://vplane.com/gallery/

If you refer to the borders around the tables this can be found in your style.css, search for


.maintable {
BORDER-RIGHT: #ccd7e0 1px solid; BORDER-TOP: #ccd7e0 1px solid; MARGIN-TOP: 1px; MARGIN-BOTTOM: 1px; BORDER-LEFT: #ccd7e0 1px solid; BORDER-BOTTOM: #ccd7e0 1px solid; BACKGROUND-COLOR: #999999
}


and replace by


.maintable {
           BACKGROUND-COLOR: #999999
}


If you like to change the color change the value then.