• http://oceandreamhome.com/hollywood-condos-for-sale/

    I can get rid of the table borders. The outside border is gone but the vertical column border is still there.

    Trying to fix via CSS, but can’t get it to work.

    table, caption, col, colgroup, tbody, tfoot, thead, tr, th, td {
    border-style: hidden hidden hidden hidden;
    border-right: hidden;
    border-left: hidden;
    }

    Any help is greatly appreciated!

Viewing 1 replies (of 1 total)
  • In http://oceandreamhome.com/wp-content/themes/realhomes-theme/css/main.css?ver=1.3.3
    find this:
    table {
    border-width: 1px;
    border-spacing: 1px;
    border-style: solid;
    border-color: #cecece;
    border-collapse: collapse;
    background-color: transparent;
    }
    table th {
    border-width: 1px;
    padding: 5px;
    border-style: solid;
    border-color: #cecece;
    background-color: white;
    }
    table td {
    border-width: 1px;
    padding: 5px;
    border-style: solid;
    border-color: #cecece;
    background-color: white;
    }

    remove from it border-width, border-style and border-color. It will affect tables everywhere on the website.

Viewing 1 replies (of 1 total)
  • The topic ‘Weird Table Border Style Issues’ is closed to new replies.