forum.coppermine-gallery.net

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:

Code: [Select]
.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
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

Code: [Select]
.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

Code: [Select]
.maintable {
            BACKGROUND-COLOR: #999999
}

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