Table background help for a newbie?

Table background help for a newbie?

by Carl Keil -
Number of replies: 2
Hi,

I started with the "Metal" theme, because it seemed closest to where I was trying to go.  I've got everything OK, a little rough, but I can tweak my graphics, but I've got some ugly grey backgrounds in table cells that I can't get rid of.  I'd like to have most of the places that have a lot of text have either a white or lite yellow background.  So, what it boils down to is how do I get rid of the ugly [in this case] grey background on this page. 

http://borntogroove.org/user/index.php?id=2

I've combed the style sheets over and over, but obviously I'm missing something.

Thanks in advance,

ck
Average of ratings: -
In reply to Carl Keil

Re: Table background help for a newbie?

by David Scotson -

The View Style Information tool, available in the Web Developer Extension for Firefox, suggests the following source of the color:

http://borntogroove.org/theme/btg/styles.php

#user-index .cell    (line 787)
{
    background-color: rgb(221, 221, 221);
}

which when you look at the actual file, is this:

#user-index .cell {
  background-color:#dddddd;
}
In reply to David Scotson

Re: Table background help for a newbie?

by Carl Keil -
Thank you so much.

Both for the specific fix for my problem and the reminder about Web Developer Extension.  I've got it installed and ready to go to work on the next problem.

Thanks again, moodle, and the moodle community, rock.

ck