change a color in style.css? change a color in style.css?
 

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

change a color in style.css?

Started by Colliope, February 08, 2006, 05:30:05 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Colliope

At the bottom of the main page and of albums, there is an info "bar" (6 albums, 20 files, on 3 pages" for example). I want to change the background color of that. I am fairly certain that this

.tableh1_compact {
       background: #E2E8EE;
       color : #000000;
       padding-top: 2px;
       padding-right: 5px;
       padding-bottom: 2px;
       padding-left: 5px;
}


is the correct element to change, but nothing happens when I change the colors.  Either I'm overlooking something very simple, or there's more to it then simply changing the color value here?

Thanks,

C

Tranz

Try:
.tableh1 {
        background: #E2E8EE;
        color : #000000;
        padding-top: 2px;
        padding-right: 5px;
        padding-bottom: 2px;
        padding-left: 5px;
}

Colliope

.tableh1 colors the background behind album names, I know that because in my case it's a .gif and that made it easy for me to spot, lol.
Besides trying to change this info bar color, I also tried adding the exact same attributes/values in the same place in the body tag as I have in the body tag for my forum to change the scroll bar colors, and that's having no effect either. I have saved, refreshed, logged out, logged in, etc..repeatedly, and no change in either case. The few changes I have made to font family and size HAVE however taken hold.

Tranz

hmm... When I added the code block above using web developer toolbar, it did change the background color, at least in my gallery. For detailed assistance, post a link to your gallery.

Colliope

Quote from: TranzNDance on February 08, 2006, 10:33:36 AM
hmm... When I added the code block above using web developer toolbar, it did change the background color, at least in my gallery. For detailed assistance, post a link to your gallery.

http://keangenes.com/cpg143/index.php

username=tester
pw= 123test123

(I have the css toolbar - found it posted here somewhere -  but was not able to see a color change with that, either, although again, I was able able to immediately see a font change.)

C