This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .image-perspective-right .et_pb_module.et_pb_text .et_pb_text_inner { | |
| line-height: 2; | |
| } | |
| .image-perspective-right .et_pb_module.et_pb_text p { | |
| padding-bottom: 0.7rem; | |
| } | |
| .image-perspective-right .et_pb_module.et_pb_text .inner { | |
| background-color: #fff; | |
| -webkit-box-decoration-break: clone; | |
| box-decoration-break: clone; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 2022: | |
| https://zauberohr.de | |
| # 2021: | |
| https://leichterfuehren.com/ | |
| https://jobstyle.ch/ | |
| https://cedura.de/ | |
| https://heddalauer.com/ | |
| # 2020: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #region Clean Up WP Admin Bar | |
| function remove_admin_bar_links() { | |
| global $wp_admin_bar; | |
| $wp_admin_bar->remove_menu('wp-logo'); // Remove the Wordpress logo + sub links | |
| // $wp_admin_bar->remove_menu('site-name'); // Remove the site name menu | |
| // $wp_admin_bar->remove_menu('view-site'); // Remove the view site link | |
| // $wp_admin_bar->remove_menu('updates'); // Remove the updates link | |
| // $wp_admin_bar->remove_menu('comments'); // Remove the comments link | |
| // $wp_admin_bar->remove_menu('new-content'); // Remove the content link | |
| // $wp_admin_bar->remove_menu('my-account'); // Remove the user details tab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #region Upload Filter | |
| function edg_upload_filters_max_image_file_size( $file ) { | |
| // File Size Limit in KB (1024 => 1 MB) | |
| $file_size_limit = 1024; | |
| $current_size = $file['size']; | |
| $current_size = $current_size / 1024; | |
| $is_image = (strpos( $file['type'], 'image' ) !== false) ? true : false; | |
| if ( ! current_user_can( 'manage_options' ) && $is_image ) { | |
| if ( $current_size > $file_size_limit ) { | |
| $file['error'] = 'Bilder dürfen max. ' . $file_size_limit / 1024 . ' MB groß sein.'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // HTML: | |
| <div style="width: 100%;/*! grid-column: 1 / span 4; */"> | |
| <input type="checkbox" id="menu_trigger" name="menu_trigger"> | |
| <label for="menu_trigger"></label> | |
| <nav> | |
| <!-- Menü --> | |
| <a href="index.php" class="navi"><b>Startseite</b></a> | |
| <a href="index.php?list=40" class="navi">Dienstleistungen</a> | |
| <a href="index.php?list=35" class="navi">Notebooks Gebraucht</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --button-background-color: #000; | |
| --button-border-radius: 0; | |
| --button-border: 2px solid #000; | |
| --button-box-shadow: none; | |
| --button-color: #fff; | |
| --button-font-family: inherit; | |
| --button-font-size: 1.2rem; | |
| --button-font-weight: 400; | |
| --button-hover-background-color: transparent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --button-background-color: #000; | |
| --button-border-radius: 0; | |
| --button-border: 2px solid #000; | |
| --button-box-shadow: none; | |
| --button-color: #fff; | |
| --button-font-family: inherit; | |
| --button-font-size: 1.2rem; | |
| --button-font-weight: 400; | |
| --button-hover-background-color: transparent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --button-background-color: #000; | |
| --button-border-radius: 25px; | |
| --button-border: 2px solid #000; | |
| --button-box-shadow: none; | |
| --button-color: #fff; | |
| --button-font-family: inherit; | |
| --button-font-size: 1.2rem; | |
| --button-font-weight: 400; | |
| --button-hover-background-color: transparent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --button-background-color: #000; | |
| --button-border-radius: 0; | |
| --button-border: 2px solid #000; | |
| --button-box-shadow: none; | |
| --button-color: #fff; | |
| --button-font-family: inherit; | |
| --button-font-size: 1.2rem; | |
| --button-font-weight: 400; | |
| --button-hover-background-color: transparent; |