• I using Oriental orange template and I make tables without border in Dreamweaver when I save it in HTML or PHP it’s ok and without border but when I paste it into page HTML in wordpress page and test it wordpress shows me gray borders. Also I tried to make table with css and css code for table I insert into template Css code and when I set border 0 or white it works but only for cells and rows inside but not on whole table actualy top of that table is without border but left, right, and bottom are still gray..

    something lie this

    |___________________|

    I also tried some table plugins but still same problem with border color for tables, also I tried to copy table from word and tried windows live writer same problem all the time :)))) and I dont know what to change into css or somewhwere

    I tried a lot of codes for table css but still same
    this is code for table

    in header is css location
    <link href=”wp-content/themes/oriental/style.css” rel=”stylesheet” type=”text/css” />

    and in body is this code

    <table cellspacing=”0″ class=”servicesT” >
    <tr class=”servHd”>
    <td colspan=”2″ class=”servHd”>Services or Links box template</td></tr>
    <tr>
    <td class=”servHd”>one</td>
    <td class=”servHd”>Twosesy</td>
    </tr>
    <tr>
    <td class=”servHd”>one</td>
    <td class=”servHd”>Twosesy</td>
    </tr>
    </tr>
    </table>

    this is css and only this servHd works ans shows me white borders or no borders but table borders still gray

    table.servicesT {
    width: 320px;
    background-color: #996633;
    border: 1px solid #ffffff;
    border-collapse: collapse;
    spacing: 0px;
    margin-top: 0px;}

    table.servicesT td.servHd
    { border: 1px solid #fff000;
    background-color: #FEFEF6;
    text-align: left;
    font-family: Verdana;
    font-weight: normal;
    font-size: 11px;
    color: #404040;}

    I tried this and also I tried to insert other php or html page with this formated table (and looks good) into wordpress page but It doesn’t work first I tried throught php code insert, then through html frames still nothing and I tried wordpress plugins page_linkto but doesn’t work, and redirection plugin but I didn’t understand how it whir works

    Please help me with table or how to insert page

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • To remove all borders from tables and their cells, try adding the following to the bottom of your stylesheet:

    table,th,td {border:none;}

    Thread Starter miroweb

    (@miroweb)

    This code didn’t help table,th,td {border:none;}
    but it helps me to find where to change code
    it was at bottom css and it’s

    .post table {
    width: 100%;
    border: 0px solid #ccc;
    border-top: 0;
    border-collapse: collapse;}
    .post table th,
    .post table td {
    border: 0px solid #ccc;
    border-bottom: 0;
    padding: .3em .5em;}
    .post table th {
    text-align: left;
    border-bottom: 0px solid #ccc;
    }

    now when I change border to 0 there is no more borders
    I don’t know how I miss this because I look for this part any way thanks it helps me to find and solve

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘problem with table borders and insert page’ is closed to new replies.