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

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

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.