XF 1.2 Q: page background color of the threads and posts

Where do I find the background color for the post text?
Do you mean the text in the post itself?

EXTRA.css
Code:
.messageText {
background-color: red;
color:white;
}
Where color:white is the text color and background-color:red is (of course) the background color.

You will also need to color the text in the quote area so it will be visible also.
Code:
.bbCodeQuote .quoteContainer .quote {
color: black;
}

And in the code areas
Code:
.bbCodeBlock pre, .bbCodeBlock .code {
color:black;
}

Otherwise the first will over-ride it and it may not be visible (it isn't on the default style)
screenshot.webpscreenshot1.webp
 
Last edited:
Top Bottom