Textarea on ipod differant than web problem

Nudaii

Well-known member
I run a private writing community and one of the popular skins is a dark skin with white text

however when on ipod the background of the textarea goes yellow making the white text unreadable

how it should look is below

textarea.webp

However it looks paleyellow on ipods in the textarea

is there a way to make both show black?
 
Try adding this to EXTRA.css:

Code:
#QuickReply textarea {
background: black !important;
}

You may also need this:
Code:
textarea.textCtrl:focus {
background-image: none !important;
}
 
Top Bottom