Hi,
Can you post a link?
The title pulls from your H1 Settings (Theme Options > Typography) and the subtitle you can change with this css:
.titleclass .subtitle {
font-family: sans-seirf;
font-size: 20px;
}
Hannah
Hey,
Your request to have the background stay the width of the screen will cause there to be blank areas around the area. Consider that the height is set by the content not by your background image size. So the height will always stay the same if you force the backgrounds width two shrink so it’s always visible you will either have the height shrink too leaving a blank area in the background or you will have to stretch the image out of it’s ratio to fill height and width.
see what I mean by adding these things one at a time in your custom css:
1.
.home-title-class {
background-size: contain !important;
background-repeat: no-repeat !important;
}
2.
.home-title-class {
background-size: 100% 100% !important;
background-repeat: no-repeat !important;
}
Hope that helps explain how backgrounds work.
Kadence Themes