Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #522146

    I have been trying to create a table in a footer column with a transparent background on all the cells and no borders so that I can position some text and images.

    I have managed to get the table cell backgrounds to go transparent by setting the color to #0000ffff for the alternative background color for the footer in generalstyling->footer.

    I can not get rid of the table cell borders though.

    Below is the code in the footer column that creates the table;

    <table width=”319″ height=”150″ id=”transtable”>
    <tr>
    <td width=”72″ style=”vertical-align: top;”>Pacific Coast Energy Home</td>
    <td width=”235″>
    Pacific Coast Energy Home </br>
    <span style=”font-size:85%”>Pacific Coast Energy, LLC is an industry leading propane marketing and distribution company based in the Puget Sound region of Washington State. We are locally owned & operated and we take pride in providing first class service at a fair and reasonable price.</span></td>
    </tr>
    </table>

    I added the following to my child theme styles.css

    #transtable {
    border-collapse: collapse;
    border: 1px none;
    }

    Any help would be appreciated!

    Thanks,
    Darryl.

    #522635

    Hey Darryl!

    Please add following code to Quick CSS as well

    #footer td {
        border: none!important;
    }

    Regards,
    Yigit

    #522683

    Hi Yigit,

    Worked great….I added it to my child theme style.css!

    Could I have just added the “border: none!important” to my #transtable ID to limit the scope to just one table?

    Thanks for the help!
    Darryl.

    #522686

    Hi!

    That would work as following

    #translateble td { border: none !important; }

    But now it would not, because you have double double quotes around your ID – http://i.imgur.com/IEbam9S.png :)

    Regards,
    Yigit

    #522692

    OK, thanks for the help!

    #522693

    Hey!

    You are welcome, we are always happy to help!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove table cell border in table in footer’ is closed to new replies.