Sorry for the title, I couldn't think of a good one.
This isn't a PHP question, but a HTML/CSS question.
The problem only shows itself in AOL browser, which is supposed to be IE, but whatever.
I have a form with a section styled something like this:
Name:
|||||||||||||| ||||||||||||||||
First Last
In code, the input box and the subtitle "first" or "last" is contained in a styled <span> tag. The span floats the two entities to the left and applies my styles and what not.
So it's like this:
<span class="name">
<input>
<label>First</label>
</span>
The problem I think is a z-index kind of thing. The span is "over" the input box, and this prevents the user from being able to click on the text box and enter text.
There are two ways to enter text in the box at this point, if you click the box on it's extreme left edge, you may be able to "get in" it. Or you click on some other box in the form that does NOT use a <span> and then TAB into the box to type. You just can't click on the box directly.
In order for z-index to work, though, it has to be absolute positioned, which I can't do because it's floated (that's what I read anyway). I can't change span into something else, I tried styling just the input boxes, I tried styling a <p> instead, no good. And I can't position absolute, it screws up the layout of the form.
So how the heck do I style the form like that, or change the z-index (if that's the problem), or in some way get stupid AOL to treat the input box right? All the other input boxes work fine, and they don't have a <span> around them.
Thanks