Set element class to:
eledpn
body:not(.elementor-editor-active) .eledpn {
display: none;
}
Set element class to:
eledpn
body:not(.elementor-editor-active) .eledpn {
display: none;
}
input::placeholder, textarea::placeholder {
color: #0c0c0c!important;
opacity: 1!important;
}
Disable Google Fonts
add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );
Disable Font Awesome
add_action( 'elementor/frontend/after_register_styles',function() {
foreach( [ 'solid', 'regular', 'brands' ] as $style ) {
wp_deregister_style( 'elementor-icons-fa-' . $style );
}
}, 20 );
Disable Eicons
add_action( 'wp_enqueue_scripts', 'remove_default_stylesheet', 20 );
function remove_default_stylesheet() {
wp_deregister_style( 'elementor-icons' );
}
/wp-admin/admin.php?page=elementor-license&mode=manually
jQuery(document).ready(function() { jQuery("body").on("click", ".click-child", function() { var href = jQuery(this).find("a").attr('href'); window.location = href; }); });
Elementor Anker bei Sticky Navigation
#anchor-ID {
display: block;
position: relative;
top: -170px; /* Wert Höhe der Sticky Navigation anpassen */
}
oder
.elementor-menu-anchor {
display: block;
position: relative;
top: -180px;
}