-
AuthorPosts
-
October 21, 2015 at 7:11 am #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;”></td>
<td width=”235″>
</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.October 22, 2015 at 1:03 am #522635Hey Darryl!
Please add following code to Quick CSS as well
#footer td { border: none!important; }
Regards,
YigitOctober 22, 2015 at 1:51 am #522683Hi 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.October 22, 2015 at 1:54 am #522686Hi!
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,
YigitOctober 22, 2015 at 2:00 am #522692OK, thanks for the help!
October 22, 2015 at 2:01 am #522693Hey!
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 -
AuthorPosts
- The topic ‘Remove table cell border in table in footer’ is closed to new replies.