Hi,
Here is the CSS code to adjust the font size:
.text-slider .subtitle {
font-size: 50px;
}
.text-slider .maintitle {
font-size: 65px;
}
Put the code into: Customize > additional CSS
Be aware that this change can make the text on your front page slider overlap incorrectly in your mobile version. I have not figured out how to apply it only to the desktop or tablet versions of my site. Maybe someone can help with that?
Add this for mobile screen issue:
@media only screen and (max-width: 767px){
.text-slider .subtitle {
font-size: 50px;
}
.text-slider .maintitle {
font-size: 65px;
}
}
Feel free to adjust the font-size value.
Is there something wrong with this code? I put it in and the it seemingly applies to phone/tablet and desktop versions of the site.