Playing with the Forum CSS Thread [AKA Custom Forum Styles!]

What is the code to change the midground bit? so not the background to the text, but the bit above that.
 
Last edited:
So, what is wrong with this bit of code? IT doen't work...

Code:
}
.messageList {
background-image: opacity: 0.5; /*text background*/
}
According to this website, it should work.
http://www.w3schools.com/cssref/css3_pr_opacity.asp

If my knowledge of CSS doesn't fail me, I think it's supposed to look like this:
Code:
.messageList {

background-image { opacity:  0.5; /* text background */ }

}
IIRC you can have braces within braces as long as each one is closed properly. Although, this might not work. I'm not the best at CSS - more of an HTML guy.

EDIT: It might also work if you do this.
Code:
.messageList {
background-image: url();
opacity: 0.5; /* text background */
}
Unless you're trying to apply the opacity to the background-image, in which I don't know off the top of my head.
 
Last edited:
n
If my knowledge of CSS doesn't fail me, I think it's supposed to look like this:

Code:
.messageList {

background-image { opacity:  0.5; /* text background */ }

}
IIRC you can have braces within braces as long as each one is closed properly. Although, this might not work. I'm not the best at CSS - more of an HTML guy.

EDIT: It might also work if you do this.

Code:
.messageList {
background-image: url();
opacity: 0.5; /* text background */
}

Unless you're trying to apply the opacity to the background-image, in which I don't know off the top of my head.
neither of those work for me
 
Here is a little change for the CSS :
Code:
.discussionListItem .iconKey .locked {
   float: left;
   margin-right: 4px;
}

It will display the "locked thread" icon near the title. You'll see more clearly the icon.
 
Back
Top Bottom