This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * This is where you enter your comments | |
| */ | |
| Single line comments: | |
| // echo "My name is Humperdinkle!"; | |
| # echo "I don't do anything either"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Add to each page's custom CSS | |
| #main-content { | |
| min-height: calc(100vh - 64px); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.elegantthemes.com/blog/divi-resources/how-to-change-divis-column-stacking-order-on-mobile-devices | |
| @media all and (max-width: 980px) { | |
| /*** wrap row in a flex box ***/ | |
| .custom_row { | |
| display: -webkit-box; | |
| display: -moz-box; | |
| display: -ms-flexbox; | |
| display: -webkit-flex; | |
| display: flex; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Give the Row that you want to flip the columns on the class 'flip' then use this css: | |
| /***[Switch column order on mobile]***/ | |
| @media only screen and (max-width: 980px) { | |
| .flip { | |
| display: -webkit-flex; | |
| -webkit-flex-direction: column-reverse; | |
| display: flex; | |
| flex-direction: column-reverse !important;} | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DATA HOSTED WITH ♥ BY PASTEBIN.COM - DOWNLOAD RAW - SEE ORIGINAL | |
| /* Custom CSS by Dave Foy - https://www.designbuildweb.co - hello@designbuildweb.co */ | |
| /* Use the same method of sizing elements as Elementor does */ | |
| body * { | |
| box-sizing: border-box; | |
| } | |
| /* Elementor - set some default left and right padding on mobile - same as in GeneratePress */ | |
| .elementor-top-section.elementor-section-boxed > .elementor-container { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media (max-width: 768px) { | |
| /* CSS in here for mobile only */ | |
| } | |
| @media (min-width: 769px) and (max-width: 1024px) { | |
| /* CSS in here for tablet only */ | |
| } | |
| @media (min-width: 1025px) { | |
| /* CSS in here for desktop only */ | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ================ Give Donate Modal ============= */ | |
| .donate-form-content { | |
| font-family: 'Playfair Display', serif; | |
| font-size: 56px; | |
| line-height: 1.3; | |
| font-weight: bold; | |
| color: #222; | |
| text-align: center; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'generate_default_color_palettes', 'tu_custom_color_palettes' ); | |
| function tu_custom_color_palettes( $palettes ) { | |
| $palettes = array( | |
| '#ffffff', | |
| '#f8f8f8', | |
| '#B6B6B8', | |
| '#010203', | |
| '#C30DBD', | |
| '#ffffff', | |
| '#ffffff', |