Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #385119

    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?

    #385709

    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

    #387463

    Thank you very much.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How do I change the font-size inside a Layout Element?’ is closed to new replies.