Hello,
I've found an issue the Minimalist theme, specifically with the form-text class. Usually, the background behind input fields is white; however, it's completely transparent when in the input field id="edit-taxonomy-tags-1". I believe this is because the throbber background image, referenced by the class form-autocomplete, is overriding the background image of form-text, making the input field unfilled.
Do you have any suggestion on how to resolve this issue? Any help is appreciated.
Thanks,
Jason
Rob, can you provide any help?
Quick note to let you know I'll finally be looking at this later today.
Strange no one's mentioned this ever before. Around line 518 of the stylesheet is:
.form-text {
padding-left: 2px;
background: url(../images/form-text.png) repeat-x top;
}
You need to change it to:
.form-text {
padding-left: 2px;
background: #ffffff url(../images/form-text.png) repeat-x top;
}




