To disable to automatic bold setting on Gravity Forms field titles, add this CSS code to your WordPress theme:
body .gform_wrapper .gfield_label {
font-weight: normal !important;
}
To disable to automatic bold setting on Gravity Forms field titles, add this CSS code to your WordPress theme:
body .gform_wrapper .gfield_label {
font-weight: normal !important;
}
Add this custom CSS code to your DIVI theme options page and it will hide the navigation menu links:
/* Hide the header navigation links */
#et-top-navigation {
visibility: hidden;
}
/* Don't hide the centered inline logo */
#et-top-navigation .centered-inline-logo-wrap {
visibility: visible;
}
To disable the copy content on all pages of your website with CSS, just follow the steps below to add the CSS snippet to your main CSS style page.
body{-webkit-touch-callout:none;-webkit-user-select: none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
Drop this custom CSS code into the SEO settings page header:
<style>
.kb-container {
visibility: hidden!important;
}
</style>