DCDivi Code | New Divi on the Blockindivicode.hashnode.dev·May 20, 2024 · 1 min readOutline text<span style="color: #000000; -webkit-text-stroke-width: 2px; stroke-width: 2px; -webkit-text-stroke-color: #FFFFFF33; stroke: #FFFFFF33;">design</span>00
DCDivi Code | New Divi on the Blockindivicode.hashnode.dev·May 16, 2024 · 1 min readBreakpoint Menu (current)/* Menu Breakpoint */ @media only screen and (max-width: 1149px) { .et_pb_menu .et_pb_menu__menu { display: none; } .et_mobile_nav_menu { display: block } } /*remove bullet points from submenu*/ #left-area ul, .entry-...00
DCDivi Code | New Divi on the Blockindivicode.hashnode.dev·May 16, 2024 · 1 min readFloat up and down effectPaste the code below into the main element field of the advanced settings of the module. animation-name: updown; animation-duration: 3s; animation-iteration-count: infinite; animation-timing-function: ease-in-out; margin-left: 0px; ...00
DCDivi Code | New Divi on the Blockindivicode.hashnode.dev·May 14, 2024 · 1 min readChange the placeholder of the option email module<script> jQuery(function($){ $("#et_pb_signup_email").attr("placeholder", "Your New Text"); }); </script> Credit: https://divi.help/threads/email-optin-change-email-field-name.8235/00
DCDivi Code | New Divi on the Blockindivicode.hashnode.dev·Oct 18, 2023 · 1 min readStop menu items from breakingBefore After CSS /* Menu no wrap ul */ .et_pb_menu .et_pb_menu__menu>nav>ul {flex-wrap: nowrap;}00