How To Make All Wp Form Field Same Width (With Custom CSS)

.wpforms-container .wpforms-field { max-width: 300px !important; } .wpforms-container input[type=date], .wpforms-container input[type=datetime], .wpforms-container input[type=datetime-local], .wpforms-container input[type=email], .wpforms-container input[type=month], .wpforms-container input[type=number], .wpforms-container input[type=password], .wpforms-container input[type=range], .wpforms-container input[type=search], .wpforms-container input[type=tel], .wpforms-container input[type=text], .wpforms-container input[type=time], .wpforms-container input[type=url], .wpforms-container input[type=week], .wpforms-container select, .wpforms-container textarea{ max-width: 300px !important; }

How To Align Centre Divi Footer Copyright Text

Apply This CSS Code: #footer-info { width: 100%; margin:0 auto; text-align: center !important; } @media only screen and (min-width: 980px) { #footer-bottom .et-social-icons { margin-bottom:-28px; } } .bottom-nav { text-align: center; }

How To Create Collapse Submenus on Mobile For Divi

If you are using our free Divi child theme, place this snippet into the scripts.js file and remove the <script> tags at the beginning and end. Otherwise, place this in your Divi>Theme Options>Integrations tab in the “Add code to the < head > of your blog” code area. <script > jQuery(function($) { $(document).ready(function() { $(“body ul.et_mobile_menu li.menu-item-has-children, body ul.et_mobile_menu  li.page_item_has_children”).append(‘<a href=”#” class=”mobile-toggle”></a>’); […]

How To Change Divi Mobile Menu Color

Apply this CSS: /* Main header */ @media only screen and (max-width: 1000px){ #main-header{ background-color:#020202; } } @media only screen and (max-width: 980px) { #et-top-navigation span.mobile_menu_bar:before, #et-top-navigation span.mobile_menu_bar:after { color: white !important; } }

How To Chnage The Design of Divi Default Menu

Apply This CSS code: #top-menu li li a { border: 1px solid whitesmoke; margin-bottom: 15px; text-align: center; } #top-menu li li a:hover { color: #ffde00; background: black; opacity: 1!important; } .nav li ul { border-top: 0px solid #0dbad8; margin-top: -10px; } .nav li ul { width: 380px; } #top-menu li li a { width: 350px; […]