The background picture that I believe you’re talking about (the coffee cup and keyboard) is controlled via Appearance> Theme Options> Home Layout. You’ll want to activate the “call to action” there, and add your image with parallax settings.
The white color is controlled via Theme Options> Advanced Styling> Content Background.
Is this what you were talking about?
Kevin, thanks a lot for this useful information. That is actually what I needed.
And one more question if it’s possible: where can I can change the font size of the Call to Action?
There are so many points in the menu that it’s really a bit difficult for me to find the settings I need((
You can set it via Appearance> Theme Options> Typography Settings, H1.
Right clicking an element and choosing “inspect” is a handy trick that will help you identify what markup text on your site is. Here’s a bit more info on that if you’re interested:
https://www.kadencethemes.com/chrome-inspect-tool/
If the Typography Settings option isn’t working for you (because it will also effect all other H1 elements on your site) you can use this CSS to target only the Call to Action text.
.kad-call-title-case h1.kad-call-title {
font-size: 45px;
color: red;
}
You’ll want to change the font-size and color attributes to fit your site, but you need to place this CSS into Appearance> Theme Options> Custom CSS.
Let me know if this is helpful.
Thanks a lot, your instructions were really helpful!)