Hello Enfold Team.
One the two sites i add below in the private content box i have add a table (data table) at the end of the site.
I want to customize the table that the font size is 18px like the text an the color of the text is always black and not grey. Then the first line should be in #719430 background color and the font color in #ffffff.
Any change to manage that?
Thanks in advance
Hey Tobias777G,
Thank you for the inquiry.
You can use the following css code to adjust the font size of the table cells and adjust the color of the first row.
.avia-table td, .avia-table tr {
font-size: 18px;
}
.avia-table .avia-heading-row {
background: #719430 !important;
color: #ffffff !important;
}
However, please note that this modification will affect all table elements in the site, and if you want to only apply the changes to the specific tables above, you have to apply a custom name or ID to the elements and use those names to define a custom css rule for the them. For more info, please check the following documentation.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
Ismael
OK thanks, works well.
But how can i link from the text in table to antoher site like the site i postet in the private content-box?