On 5/6/05, tee <[EMAIL PROTECTED]> wrote:
> But it is in the div
> 
> Example:
> <div id="form">
> <form method="post" action="form.cgi">
> <input type="hidden" name="postmode" value="QUANTITYBOXES" />
> <p>blah blah blah </p>
>     <div class="twoCol">
>     <label><input type="text" size="2" name="quantity1" /> item name</label>
>     <label><input type="text" size="2" name="quantity2" /> item name</label>
>     </div>
> </div>

You misunderstood that a bit: It must be the direct contents of one of
the elements listed - no elements in between.
You currently have 

    div > form > input

But the input need to be contained in one of the listed elements - for
example like this:

    form > div > input

It's a question of direct parent, not ancestor.
-- 
David "liorean" Andersson
<uri:http://liorean.web-graphics.com/>
******************************************************
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
******************************************************

Reply via email to