On Mon, Dec 1, 2008 at 11:29 AM, Brandon Martin <[EMAIL PROTECTED]> wrote: > > I need some help please. I am trying to get this form to work. Submit > and Reset buttons are not working. If I remove the div's from the form > it works fine, but I want it is displayed the way I want it right now. I > pasted the code that I am using can someone help me with this.
Your HTML is out of order. You can't do this: <div> <form> </div> </form> Do this: <form> <div> </div> </form> I.E. put the form around the whole set of divs, or start & end the columns entirely inside the form. Also, you can make the form the container. <form class="container"> <div class="column"> </div> </form> -- -- Christian Montoya christianmontoya.net --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en -~----------~----~----~----~------~----~------~--~---
