Change font colour in Parallax 1

Hi,

I like to change the font colours in Parallax 1.
And I’d also like to change the background colours in the buttons.
Thanks in advance,

Greg

Hello there,

I hope you are doing well today.

You can use the following CSS code to change the font color by going to Appearance > Customize > Additional CSS and pasting it there.


/*Top parallax*/
.image-bg h3, .image-bg h1 {
    color: #000;
}

/*Button colors*/
.image-bg .btn.btn-filled {
    background: #000;
    border-color: #000;
}

.btn-white, .image-bg .btn, .image-bg .btn:visited {
    color: #fff;
    border-color: #000;
    background-color: red;
}

Best Regards,
Support