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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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 1 Guest 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.