Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #519862

    Hello all

    on this page I have three tables. I would like to change the color of each
    http://goo.gl/fqnBE4
    the second green
    the third orange
    the fourth orange

    Is it possible?

    • This topic was modified 8 years, 6 months ago by Tokyo.
    #520185

    Hi Tokyo!

    Add this to your custom CSS.

    #av_section_2 .pricing-table li.avia-pricing-row, 
    #av_section_2 .pricing-table li.avia-heading-row, 
    #av_section_2 .pricing-table li.avia-pricing-row .pricing-extra {
        background: orange;
        border-color: orange !important;
    }
    #av_section_3 .pricing-table li.avia-pricing-row, 
    #av_section_3 .pricing-table li.avia-heading-row, 
    #av_section_3 .pricing-table li.avia-pricing-row .pricing-extra {
        background: green;
        border-color: green !important;
    }

    Best regards,
    Elliott

    #520231

    Thanks but not changue color

    #520241

    Hey!

    You see the “av_section_2” in the CSS code?

    #av_section_2 .pricing-table li.avia-pricing-row, 
    #av_section_2 .pricing-table li.avia-heading-row, 
    #av_section_2 .pricing-table li.avia-pricing-row .pricing-extra {
        background: orange;
        border-color: orange !important;
    }

    You need to copy that section and change the number to target each section like so.

    #av_section_4 .pricing-table li.avia-pricing-row, 
    #av_section_4 .pricing-table li.avia-heading-row, 
    #av_section_4 .pricing-table li.avia-pricing-row .pricing-extra {
        background: orange !important;
        border-color: orange !important;
    }

    I changed it to 4 so it will now target the fourth color section in the page. Or you can edit each color section and give it a custom ID and use that instead.

    #customID .pricing-table li.avia-pricing-row, 
    #customID .pricing-table li.avia-heading-row, 
    #customID .pricing-table li.avia-pricing-row .pricing-extra {
        background: orange;
        border-color: orange !important;
    }

    Cheers!
    Elliott

    #520253

    aaaahh okok thank you :)

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Changue tabs color’ is closed to new replies.