Change colour of Sliding Box Text

hi this is the website i am working on: preetly.co, the services section has has sliding box implemented, the background should be peach like i already selected but the text on it should be black which is white in my site, can you please tell how to change the text colour.

one more question how to remove the caption grey background, in the why choose preetly section.

Thanks

Comments

  • Hi,
    These features you're asking has font color hardcoded in the theme files, but we're able to change it with some additional custom css code below.
    Paste it to the Theme Options > Custom CSS & JS > CSS
    .sliding_box h4{
    color:black !important;
    }

    .wp-caption-text{
    background:none !important;
    }
    Greetings
  • Thankyou so much!
Sign In or Register to comment.