How to change this table bg color? How to change this table bg color?
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

How to change this table bg color?

Started by Rydel, August 30, 2004, 10:39:15 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

Rydel

How do I change this table backround color? (The one that is still white).

http://vplane.com/gallery/

mstralka

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.
GO IRISH

DaMysterious

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.


DaMysterious.