Hallo,
how can reduce the #_aviaLayoutBuilderCleanData
height into child theme ?
I’ve tried this code in my child theme style.css, but it doesn’t work :
.testmode #_aviaLayoutBuilderCleanData,
.debug #_aviaLayoutBuilderCleanData,
#_aviaLayoutBuilderCleanData
{height: 50px !important; margin: 25px 0 0 !important;}
I’ve created a avia-builder.css in my child theme, but it does neither :
@import url("http://localhost/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-builder.css");
.testmode #_aviaLayoutBuilderCleanData,
.debug #_aviaLayoutBuilderCleanData,
#_aviaLayoutBuilderCleanData
{height: 50px !important; margin: 25px 0 0 !important;}
HELP !
Hey Anton!
Please try adding following code to Functions.php file in Appearance > Editor
function add_custom_code_head(){
?>
<style>
.testmode #_aviaLayoutBuilderCleanData,
.debug #_aviaLayoutBuilderCleanData,
#_aviaLayoutBuilderCleanData
{height: 50px !important; margin: 25px 0 0 !important;}
</style>
<?php
}
add_action('wp_head', 'add_custom_code_head');
Cheers!
Yigit
nope, nothing happens
Hi!
Can you please try changing the code to following
add_action('admin_head', function() {
?>
<style>
.testmode #_aviaLayoutBuilderCleanData,
.debug #_aviaLayoutBuilderCleanData,
#_aviaLayoutBuilderCleanData
{height: 50px !important; margin: 25px 0 0 !important;}
</style>
<?php
});
Cheers!
Yigit
DONE !!!
Thank you !
RESOLVED