Hi,
wie kann ich die Schriftart eines einzelnen Text-Blocks verändern?
Folgendes klappt nicht:
.text-font{
font-family: 'lora';
}
LG
Hallo Crevlon!
Please enable custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
And give your element a custom class and then change the code to following
.your-custom-classs * { font-family: 'lora'!important; }
Regards,
Yigit
Hey thank you! :)
It works!
Just for my unterstanding…for what is the “*”?
Regards,
Marco
Hey!
You are welcome Marco!
It is a ‘wildcard’, so that CSS code says “find ‘your-custom-class’ class and then apply ‘font-family: ‘lora” to every element inside ‘your-custom-class'” :)
Best regards,
Yigit
Ah perfect! Thank you for the info :)