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>
If you have removed the MENU on a specific page and wish to have the Menu Module take its place. Simply follow these steps.
Go to Menu Setting > Advanced > CSS ID & Classes > and add this below class.
cstm_menu
Take a look at this screenshot:
And then please go to your WordPress Dashboard > Divi > Theme Options > Custom CSS and add the following:
@media only screen and (min-width:981px){
.cstm_menu{
position:relative;
left:50px;
bottom:50px;
}
}