Tagged: tables
Hi. Im struggling to override the default white background color tables. I tried the following CSS code already but it wont work:
table td, table tr, table th{ background: transparent !important;}
I even wrapped my a table inside a div and called it ‘transparent-tables’
.transparent-tables tr, .transparent-tables td { background-color: transparent !important; border: none !important; vertical-align: top !important;}
Is there any other way to make the background color of tables transparent? I have an image in the background.
Thanks in advance!
Hi zedduo!
Thank you for using Enfold.
You can add an inline css style to the table or add this in the Quick CSS field:
.transparent-tables {
background-color: transparent !important;
}
Cheers!
Ismael
Awesome! That worked! Thanks!!