Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1319015

    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

    #1319348

    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

    #1319349

    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?

    #1319568

    Hi,

    Have you tried using the Button Row instead of the default? With this type, you will be able to apply a link to the table cell content or text.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.