baz88
1
Hello
There’s 3 things I really need to change the colour of. They are as follows -
-
How do I change the background colour of the parallax section? It seems to default to a light grey.
-
How do change the font colour of the widget titles and body text?
-
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.
baz88
2
*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
I will close this case now, Feel free to contact us again if you have other questions
Thanks!