hi there,
how do i create a frame without background to the text block(in content elements).
thank you in advance
indiatravelz
Hi Indiatravelz,
You would need to target that specific element with css and change its background value. So first add this to your functions.php:
add_theme_support('avia_template_builder_custom_css');
Now each element in the advanced layout editor will have a new field for you to give that item a custom class name. Give the text block the class name of:
no-background-textblock
Then add the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .no-background-textblock {
background: transparent;
}
Regards,
Devin