• I’d like to remove some space between the contact form and the emails listed. I was trying to use firebug, but can’t find where the pixels would be to change close the gap.

    Any help is appreciated.

    http://tinyurl.com/7o9qbbk

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • One of the things affecting it is:

    #content table {
      border: 1px solid #E7E7E7;
      margin: 0 -1px 24px 0;
      text-align: left;
      width: 100%;
    }

    Another one is:

    .entry-content input {
      margin: 0 0 0;
    }

    Set the bottom margin values of both to zero and you’ll get rid of most of the gap. I can’t see causes what’s left, offhand.

    Your form has much more serious problems, though, because its contents don’t fit into the content area, in Firefox, anyway. It’s OK in Chrome. The problem is because of HTML errors and warnings in your table, I think. If you correct the errors and warnings I thing FF will be satisfied. Or you could use a more modern way of laying out a form, of course.

    HTH

    PAE

    Thread Starter mixit

    (@mixit)

    I check it out. Did you use firebug from firefox to find that? and how/where could I go to find the warnings to correct?

    Appreciate the assistance

    Yes. Firebug is your friend.

    And your other friend in the Firefox family is the Web Developer Toolbar. You install it and then to validate a page you just click on the Tools menu item (button) and select ‘Validate HTML’ or ‘Validate Local HTML’. You use the latter (local HTML) if the page is not publicly viewable, so in your case, you’d need the former.

    Saves a lot of messing about with the web site at:

    http://validator.w3.org

    (which is what the Web Developer Toolbar calls)

    HTH

    PAE

    Thread Starter mixit

    (@mixit)

    I just added to my toolbar. Thanks for the info!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove Space below Contact Form’ is closed to new replies.