Results 1 to 4 of 4

Thread: Can someone please help :)

  1. #1
    Join Date
    Sep 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Can someone please help :)

    Hi everyone!

    As soon as I close a form tag I’m working on by typing: </form>, a gap suddenly appears underneath the table that the <form> code is in. This is only happening in Internet Explorer, but it’s screwing up my whole layout of my website. Why is this happening? How do I get rid of that stupid gap? It works perfect in Firefox, but in IE it acts retarded! Any advice would be extremely great because I’m stumped!

    Thanks!

  2. #2
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    Can you provide the HTML code here, so that we get a good idea

  3. #3
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by nickadocker
    As soon as I close a form tag
    And a form does require a closing tag.

    I’m working on by typing: </form>, a gap suddenly appears underneath the table that the <form> code is in.
    There's a margin somewhere, either on the form itself or the following element. You can use CSS to remove it once you've identified it.

    This is only happening in Internet Explorer, but it’s screwing up my whole layout of my website.
    That sounds like a fragile layout, then. How does it respond to larger font sizes?

    Mike

  4. #4
    Join Date
    Sep 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for responding back! Not many people do and the advice was really helpful! I fixed the IE problem by adding this code between my head tags:

    <style type="text/css">
    form {
    margin:0;
    padding:0;
    }
    </style>

    Thanks!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •