Unable to see your menu on mobile with the Divi Theme?
Please go to your WordPress Dashboard > Divi > Theme Options > Custom CSS and add the following:
#main-header .mobile_menu_bar:before{
color: white !important;
}
Unable to see your menu on mobile with the Divi Theme?
Please go to your WordPress Dashboard > Divi > Theme Options > Custom CSS and add the following:
#main-header .mobile_menu_bar:before{
color: white !important;
}
If you set your Divi Menu centered, you will see on your Mobile by default “Select Page” before your menu bar. Use this CSS snippet to hide it.
#et_mobile_nav_menu span.select_page {
display:none;
}
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>