Changing the comment box colour.

Zovator

Member
On my installation using Flexile Dark, when you post a comment on somebody's wall, the box you are typing into is all black and you cannot see what you are typing, I can't find where to change this particular box, can anybody enlighten me?
 
Enlighten you, or enlighten your text box? :D

Or are you aiming to lighten the text color?

Either way, I believe the CSS you're looking for is member_view.css

Code:
.profilePage .profilePoster textarea
{
height: 54px;
width: 100%;
box-sizing: border-box;
*width: 98%;
resize: vertical;
}

So you can add color or background-color properties.

Though probably even better is if you add to EXTRA.css:

Code:
.profilePage .profilePoster textarea
{
color: whatevercolour;
background-color: whatevercolour;
}
 
Top Bottom