Changing the colour of parallax background and text.

Hello

There’s 3 things I really need to change the colour of. They are as follows -

  1. How do I change the background colour of the parallax section? It seems to default to a light grey.

  2. How do change the font colour of the widget titles and body text?

  3. How do I change the font colour of standard page titles?

The URL - https://chinaliving.org/start-here/

Any help with this would be greatly appreciated.

Thanks.

*UPDATE

I can probably live without numbers 1 & 2 but I would still really like to know how to change the page title font colour.

Thanks,

Hello,

I hope you are doing well today.

These options can be done with CSS:


/*Parallax bg color*/
.bg-secondary {
    background: red;
}

/*widget title and paragraph color*/
.col-md-4.col-md-offset-1.col-sm-5.col-sm-offset-1 h3 {
    color: red;
}

.col-md-4.col-md-offset-1.col-sm-5.col-sm-offset-1 p {
    color: red;
}

/*Standard page title color*/
h1, h2, h3, h4, h5, h6 {
    color: #0e1015;
}

Best Regards,
Support

Hello,

I hope you are doing well today.

These options can be done with CSS:


/*Parallax bg color*/
.bg-secondary {
    background: red;
}

/*widget title and paragraph color*/
.col-md-4.col-md-offset-1.col-sm-5.col-sm-offset-1 h3 {
    color: red;
}

.col-md-4.col-md-offset-1.col-sm-5.col-sm-offset-1 p {
    color: red;
}

/*Standard page title color*/
h1, h2, h3, h4, h5, h6 {
    color: #0e1015;
}

Best Regards,
Support

Thank you, sir!

I will close this case now, Feel free to contact us again if you have other questions
Thanks!