The Divi Show / Hide Button lets you reveal and/or hide Divi Builder elements at the click of a button. When an element is revealed it is done so using the jQuery show() method. This method sets the "display" CSS property of the revealed element to "block". If you need to customize the final value given of the "display" property, e.g. to set the element to "display: flex", "display: inline-flex" or "display: inline-block", then you can do so with some CSS like so:
#my-flex-element[style*='display: block']{
display: flex !important;
}
Related Post: Adding CSS to the Divi Theme
0 Comments