Hello,
I need also tables without any style and without border.
How could i do that?
Hey spavli2!
Thank you for using the theme.
Use the table element then add this on Quick CSS or custom.css to remove the border and background color:
.main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
background: transparent;
border: none;
}
.main_color tr:nth-child(even), .main_color .avia-data-table .avia-heading-row .avia-desc-col, .main_color .avia-data-table .avia-highlight-col, .main_color .pricing-table>li:nth-child(even), body .main_color .pricing-table.avia-desc-col li {
background-color: transparent;
border: none;
}
Best regards,
Ismael
Thanks!
Works great!