/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 



/* darken gravity form fields */

body #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=text] {
     border: 2px solid black;
     font-size: 12px;
     color: black;
     border-style: solid;
     margin: 10px;
     padding: 10px;
}

/* Remove author name from posts */

.single .byline, .group-blog .byline {
display: none;
}
a.url.fn.n {
display: none;
}

.index-post-author {
display: none !important;
}


.wc-shortcodes-sep, .wc-shortcodes-author {
    display: none !important;
}

.entry-meta {
     display: none;
}


.author {
     display: none;
}

.blog-title-body SPAN {
    display:none !important;
}

/** Let's get rid of the annoying Site Health warning about no auto-updates. We don't want autoupdates because we want to do backups before updates! 
 */
 
 add_filter('site_status_tests', function (array $test_type) {
    
    unset($test_type['async']['background_updates']); // remove warning about Automatic background updates
    
    return $test_type;
}, 10, 1);
 

 