to make the black that is in my content boxes, I guess that is what they are called, into a semi-see thru type of fill in?also, how do i turn the color of the text to black? this is the code i am using at the moment, compliments of Moe Hightower. Thanks again for everyone's help!oh and this is what my site looks like at the moment:http://theironbrigade.guildportal.com .SelectedTab {
BACKGROUND-COLOR: #383838;
COLOR: #FFFFFF;
BORDER-WIDTH: 1px 1px 1px 1px;
BORDER-STYLE: solid;
FONT-SIZE: 10pt;
FONT-FAMILY: Verdana;
BORDER-COLOR: #666699;
TEXT-ALIGN: CENTER;
PADDING: 2px 2px 2px 2px;
SPACING: 0px 0px 0px 0px;
}
FORM
{
BORDER-RIGHT: medium none;
PADDING-RIGHT: 0px;
BORDER-TOP: medium none;
PADDING-LEFT: 0px;
PADDING-BOTTOM: 0px;
MARGIN: 20px;
BORDER-LEFT: medium none;
PADDING-TOP: 0px;
BORDER-BOTTOM: medium none;
FONT-FAMILY: Verdana
.UnSelectedTab {
BACKGROUND-COLOR: #000000;
.AltGridRow {
BACKGROUND-IMAGE: url('');
.NormGridRow {
.ContentBox {
MARGIN-TOP: 0px;
.ForumCategoryHeader {
PADDING-LEFT: 5px;
PADDING-RIGHT: 5px;
PADDING-TOP: 5px;
PADDING-BOTTOM: 5px;
.ContentBoxTitle {
PADDING-LEFT: 25px;
BORDER-TOP: 0px;
BACKGROUND-IMAGE: url('');}
.ContentBoxTitleNoBackground {
A:active
COLOR: #9999ff; text-decoration: none
A:link
A:hover
COLOR: #9999ff; text-decoration: underline
A:visited
COLOR: #ccccff; text-decoration: none
.ContentBoxBody {
TD
BODY {
SCROLLBAR-BASE-COLOR: #000000;
SCROLLBAR-ARROW-COLOR: #FFFFFF;
BACKGROUND-IMAGE: url(http://www.axiomfiles.com/Files/127713/zangarmarsh.JPG);
BACKGROUND-REPEAT: no-repeat;
BACKGROUND-ATTACHMENT: fixed;
BACKGROUND-POSITION: center bottom;
}.toolTipHeader {
color: lime;
font-weight: bold;
IMG
BORDER-WIDTH: 0px 0px 0px 0px;
HR
COLOR: #666699;
I've highlighted in bold the bit which controls the default font colour. The CSS you have also contains an empty background property, which is the starting point for getting your content boxes to appear semi-transparent.Although, I'd steer clear of this unless you have a more subtle page background as this could make reading the text of the container quite difficult - especially if the colour match is one of those that falls into the area of common colour blindness (reds, greens, yellows and/or greys).Getting the semi-transparency is also quite a challenge. You can either create a faux (dummy) transparent image - hard to explain, but you make a .gif with transparent background, then colour in alternative pixels, leaving the spaces as transparent, see below...My 'super' transparent .gifX = colourO = transparentXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOXOThe other way of doing this is to create a .png file with transparency, you can then fill this image with a solid colour, which you then give opacity to.It's a much better looking solution, but won't work in IE6 (still a very popular browser). In which case you'll need to add another line to the CSS, see 2nd example below..ContentBoxBody {BACKGROUND-COLOR: #000000;
PADDING-LEFT: 5px;PADDING-RIGHT: 5px;FONT-SIZE: 10pt;FONT-FAMILY: Verdana;BACKGROUND-IMAGE: url('');}In the 2nd CSS use something like:BACKGROUND-IMAGE: url('background.png') !important;BACKGROUND-IMAGE: url('background.gif');This, should, tell modern browsers to use the 'important' line, crappy browsers like IE6 will ignore the first image as the CSS is telling is to then apply the second one instead.