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( 'THE_FILTER_NAME','YOUR_CUSTOM_FILTER_FUNCTION' ); | |
| function YOUR_CUSTOM_FILTER_FUNCTION() { | |
| return 'Your custom text to replace the normal text'; | |
| } |
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( | |
| '#000000', | |
| '#FFFFFF', | |
| '#F1C40F', | |
| '#E74C3C', | |
| '#1ABC9C', | |
| '#1e72bd', | |
| '#8E44AD', |
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
| <div class="hide-on-mobile hide-on-tablet"> | |
| Content here will only display in Desktop | |
| </div> |
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
| /* ========== Mailchimp Newsletter Signup ======= */ | |
| input#mce-EMAIL.email { | |
| border: 2px solid #fff; | |
| border-radius: 4px; | |
| } | |
| ::-webkit-input-placeholder /* WebKit, Blink, Edge */ { | |
| color: #fff; | |
| } |
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 Donation Form ============= */ | |
| button.give-btn.give-btn-modal { | |
| background: #009966; | |
| font-size: 16px; | |
| color: #fff; | |
| padding: 15px 30px; | |
| border-radius: 4px; | |
| border-color: transparent; |
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
| Type into URL | |
| data:text/html, <html contenteditable> | |
| or you can use about:blank | |
| http://www.fizerkhan.com/blog/posts/Use-your-browser-as-Notepad.html | |
| https://coderwall.com/p/lhsrcq/one-line-browser-notepad |
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
| /* Style 404 Page */ | |
| .error404 .site-main { | |
| width: 100%; | |
| } | |
| .error404 .site-content { | |
| display: flex; | |
| flex-direction: row; | |
| align-items: center; |