I’m using an Enfold-Child theme and want to change the font-size of one aspect of the theme (Note: not the default font-size, I’ve already done that).
What is the correct CSS code when changing the font-size within a Text box inside a Layout Element using the Avia Layout Builder?
Hey Mark!
You can use following code in Quick CSS field in Enfold theme options under Generel Styling tab
.avia_textblock { font-size: 16px; }
that would apply the changes on all text block elements. If you would like to apply it to a certain one, please turn on custom CSS field for ALB elements ( 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 one
.avia_textblock.your-custom-class { font-size: 16px; }
Cheers!
Yigit
Thank you very much.