Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #257147

    hi,

    I’ve got several pricing tabs on my site and I named them Red/Yellow/Blue. Can I change each tab into that specific colour? Pls indicate how.

    rgds

    Iris

    #257811

    Hi IrisMar17!

    You can target any element and change its color with css but if you are asking for us to provide the specific css to do that we would need to see the pages where the elements are you want to target.

    Cheers!
    Devin

    #258178

    hi Devin,
    thanks for your reaction. The site is: studiosjoerd.nl and the colours I would like to change are in the first pricing tab (4 columns: red, yellow, blue, grey).

    Site is still being worked on. Playing around where to place colour fields, which H1, H2 to use etc.

    rgds

    Iris

    #258684

    Hi Iris!

    Try with this code:

    .avia-pricing-table-container .pricing-table-wrap:nth-child(1) li{
        background: red;
    }
    .avia-pricing-table-container .pricing-table-wrap:nth-child(2) li{
        background: yellow;
    }
    .avia-pricing-table-container .pricing-table-wrap:nth-child(3) li{
        background: blue;
    }
    .avia-pricing-table-container .pricing-table-wrap:nth-child(4) li{
        background: gray;
    }

    Add it to the Quick CSS.

    Best regards,
    Josue

    #258952

    hi Josue,

    thanks! They swtiched to red/yellow/blue and grey. Unfortunately the other 3 boxes changed to the same colours to. I made a copy of the code you gave me, renumbered 1, 2, 3 into 5, 6 and 7 and put the colour white into it. Didn’t work…
    I also wanted to change the font colour (you can’t read it now anymore). Did that by adding: font-colour:#gray;. No changes.

    How can I change the css myself in that area? Where to find it?
    one box, the yellow one, wasn’t covered completely in yellow though. It’s the ‘attention-box’.

    looking forward to some more advice. Thanks in advance!

    Iris

    #259195

    Hi!

    Thank you for the update.

    Please replace the code with this just to make sure that only the pricing table included on the color section with the #av_section_3 id is affected:

    #av_section_3 .avia-pricing-table-container .pricing-table-wrap:nth-child(1) li{
        background: red;
    }
    #av_section_3 .avia-pricing-table-container .pricing-table-wrap:nth-child(2) li{
        background: yellow;
    }
    #av_section_3 .avia-pricing-table-container .pricing-table-wrap:nth-child(3) li{
        background: blue;
    }
    #av_section_3 .avia-pricing-table-container .pricing-table-wrap:nth-child(4) li{
        background: gray;
    }

    Regards,
    Ismael

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