How do we change the font colour and size, and table borders in a table element?
I need:
Font: white
Font size: 2em
Border: transparent
I changed the background to transparent via CSS, but cannot change the font or border.
.home .homepgservicestable {
background-color: transparent;
}
Hey Tanja,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top.home .alternate_color .homepgservicestable.avia-data-table.avia_pricing_minimal td {
color: #fff;
border-color: transparent;
font-size: 2em;
}
Best regards,
Mike
Thank you!