Adjusting the color of text in the composer using ...
# 🤝help
i
I have a CSS issue with the text color in the composer. I want the background to be white and the text color to be black. In the Advanced styler I put in: .bpw-composer { background-color: #ffffff ; border-top: 1px solid #dbdbdb; color: #000000 ; } This makes the background white but the text is still white and the send icon is gone. Maybe they are both covered, idk but when the background color is set back to black and the "color" set to white, both the text and send button are visible. Any idea on how to set the background to white and the text to black?
f
Hey for update the color of the text input in the composer section you can use the following rule
Copy code
.bpw-composer  textarea{
  color: black
}
But it's advisable to update the rules with the selector
#input-message
and for updating the color of the send button you need to update the rule for the selector
.bpw-send-button
i
I actually had that already but since you mentioned there were rules I put in an !important statement after the color. The place holder text is still white though as seen in the first and second picture. I'll have to find the selector.

https://cdn.discordapp.com/attachments/1136376798939193546/1136423875027161098/image.png

https://cdn.discordapp.com/attachments/1136376798939193546/1136423875278815352/image.png

https://cdn.discordapp.com/attachments/1136376798939193546/1136423875589197935/image.png

f
That's good. Here's the selector for the placeholder
#input-message::placeholder
12 Views