• Working on a table for one of the pages on my site. Not having any luck removing the border, and getting it sized to the content. I’ve been in to my CSS Stylesheet Editor and updated it wherever it seems apparent to me, but I must be missing something. Any help would be appreciated!

    Here’s the new CSS I have in my Stylesheet Editor…

    table {
    border-width: 0;
    border-collapse: collapse;
    border-spacing: 0;
    }

    /* Table */
    #content table {
    width: ;
    border-width: 0;
    }

    #content tr {
    border-width: 0;
    }

    #content th {
    border-width: 0;
    font-size: 12px;
    text-align: left;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 2.6em;
    text-transform: uppercase;
    }

    #content td {
    border-width: 0;
    padding: 0;
    }

    The page I’m working on can be found here

Viewing 2 replies - 1 through 2 (of 2 total)
  • Those borders have nothing to do with the table, but are from this CSS code in the theme:

    #main #content img {
        background-color: #FFFFFF;
        border: 1px solid #BBBBBB;
        max-width: 630px;
        padding: 5px;
    }

    Using Firebug will help you with this kind of question…

    Thread Starter jpetznick

    (@jpetznick)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘table issues’ is closed to new replies.