New to website design so sorry if this is pretty elementary! I want to change the text styles of the Home Page text options (Full Width Parallax Slider). I want to use two font families in the website (Playfair and Muli) and adapt their styles for different applications in my site.
I've tried to find something relevant in the style sheet but couldn't find anything as it's all still a different language to me!
Hi there,
New to website design so sorry if this is pretty elementary! I want to change the text styles of the Home Page text options (Full Width Parallax Slider). I want to use two font families in the website (Playfair and Muli) and adapt their styles for different applications in my site.
I've tried to find something relevant in the style sheet but couldn't find anything as it's all still a different language to me!
Thanks guys,
Tom
Hi,
use theme options Styling Options -> Custom CSS
to add styles for each text groups
for example
.ultralarge {
color: #fff;
text-align: center;
font-family: \'Montserrat\', sans-serif;
font-size: 100px;
line-height: 80px;
letter-spacing: 0;
}
for h1 text sliders
.georgia {
font-family: Georgia,\"Times New Roman\",Times,serif;
font-size: 30px;
line-height: 30px;
font-style: italic;
padding: 10px 0;
}
for the text above h1
.vertical-align-middle p{
add your font styles here
}
for normal slider text (underneath)
thanks
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Thanks for that, very helpful. Looks like I\'m gonna have to learn some CSS!