Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #162351

    I would like to customize a promobox for a single page. I used the following custom css code to change the background color, but how can I make the font white?

    .page-id-3231 .main_color .av_promobox{
    background: #87b8d9;
    color:white
    }

    http://dev.atlasdie.com/why-atlas/institute/

    Thanks!

    #162369

    Hi,

    .page-id-3231 .main_color .av_promobox{
    background: #87b8d9;
    color:white!important;
    }

    This should do it

    Regards,
    Yigit

    #162372

    No luck. :( I had tried that as well to no avail. Font is still black. Any other suggestions? Thanks a bunch!

    #162381

    Hi,

    Try this:
    .av_promobox h4{ color: white; }

    Regards,
    Josue

    #162383

    This is how my custom css now reads:

    .page-id-3231 .main_color .av_promobox{
    background: #87b8d9;
    .av_promobox h4{ color: white; }
    }

    Did I put that last h4 color code in the correct place? Still doesn’t change the font color…

    #162384

    Hi,

    There is a typo, replace it with:

    .page-id-3231 .main_color .av_promobox{ background: #87b8d9; }
    .av_promobox h4{ color: white; }

    Regards,

    Josue

    #162386

    That did it. Thank you!!! Awesome theme with fantastic support!!

    #162389

    Glad its working for you now :)

    Regards,
    
Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Promo Box Font Color’ is closed to new replies.