Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1118688

    Hi,
    I am using the table component of Avia Layout Builder.
    The default background color of Heading Row is black. I want change the color, how to do it?
    I want define the color of every field, Can it be done?

    Best Reagrds.
    Thomas

    #1118882

    Hey thomasvr4,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1119294
    This reply has been marked as private.
    #1119411

    Hi,

    Thanks for the link, though it’s not loading on my end. Please see private.

    Best regards,
    Rikard

    #1119962

    Dear Rikard

    I can load the website in chrome successful but not success in IE.
    Is it possible I use WP super cache cause website crash?

    Best regards.
    Thomas

    • This reply was modified 5 years, 4 months ago by thomasvr4.
    #1120298
    This reply has been marked as private.
    #1120470

    Hi,
    Sorry for the late reply, to change the background color for the table titles, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-647 .main_color .pricing-table-wrap:nth-child(2) .pricing-table li.avia-heading-row {
        background-color: red !important; 
    }
    #top.page-id-647 .main_color .pricing-table-wrap:nth-child(3) .pricing-table li.avia-heading-row {
        background-color: blue !important; 
    }
    

    To change each row and cell after that, please try this css and adjust the “.pricing-table li:nth-child()” for each row:

    #top.page-id-647 .main_color .pricing-table-wrap:nth-child(2) .pricing-table li:nth-child(2) {
        background-color: red !important; 
    }
    #top.page-id-647 .main_color .pricing-table-wrap:nth-child(3) .pricing-table li:nth-child(2) {
        background-color: blue !important; 
    }
    

    Best regards,
    Mike

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