I want to use this pure HTML/CSS template for my ASP.NET website:
I copy it inside my Default.aspx page, inside the FORM element, but the form messes up the layout:
http://sub2.tanguay.de
UPDATE: this now displays correctly, thanks to Devio.
I tried altering the style of the form tag but can't get it to stop affecting the layout, I tried:
style="margin: 0px; padding: 0px; display: inline; background-color: transparent;"
- Is this a common issue when copying in layout templates into ASP.NET?
- Is there an easy work around, like some margin:-2px fix or something like that?
- I need to keep the form tag, of course, for the ASP.NET functionality.