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;
}