I have the setting for an Icon in the layout builder to display inline, but I can figure out how to make the following text/div display inline as well.
Hey tlow87!
You want to achieve something like this?
This code will do it:
.av-special-heading.av-special-heading-h3.avia-builder-el-6.el_after_av_font_icon {
display: inline;
}
Also, this may come handy if you want to apply this to multiple heading elements: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Best regards,
Josue
I add this to functions.php?
add_theme_support('avia_template_builder_custom_css');
And what should the ‘Default inline style’ be doing? In what situations can I use the option as is?
Hi!
After activating that, you can set a class to every heading element you’d want to be inline, then simply add something like: to the Quick CSS:
.inline{
display: inline;
}
Best regards,
Josue