Customizing bearblog dashboard

I’m trying to change the text color in the coding input box on my bearblog dashboard editor. Right now, it defaults to the same text color as the body, which makes it very hard to read. I tried

input[type=text] {
color: #226566;
}

but that didn’t work.

You may need to use !important to override whatever code is determining the colour of the input.

2 Likes

I ended up figuring it out myself. I needed to apply the CSS rule to textarea, not input.

2 Likes