Background color to be same as text color

css, html

Solution

This should do the trick.

#Image_ID:focus {
    color: transparent;
}

Problem

Currently I have the following code. ``` #Image_ID { color: #000066; font: normal 10pt Verdana, Helvetica, Arial; background: none; border: none; } ``` This makes my Input Box white and gets rid of the border. But when a value is entered the value is a black color. What I want is so that when text is entered that it is the same color as the background so that it is virtually invisible.

Original source