Viewing 2 replies - 1 through 2 (of 2 total)
  • Your table has a bottom margin of 24px. It looks like someone already tried to fix it, but they had the wrong code in the HTML:

    <table width="640px" "margin-bottom: 0px;">

    should be

    <table width="640px" style="margin-bottom: 0px;">

    But if you plan on using a lot of tables, it would be better to fix it with a custom CSS plugin:

    #content table {
        margin-bottom: 0;
    }
    Thread Starter Geminiluv

    (@geminiluv)

    Doh…Thanks man! Knew I was overlooking something simple!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘White Bar at the bottom of table’ is closed to new replies.