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
<?php | |
/* Do not inlude the first 4 lines of this code. Only copy the code below this line. This should be | |
placed in your main functions.php to enable this globally, or on specific page templates */ | |
//* Allow shortcodes to execute in widget areas | |
add_filter('widget_text', 'do_shortcode'); | |
// Register function to allow shortcodes | |
function add_iframe($atts) { | |
extract(shortcode_atts(array( |
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 { | |
box-shadow: 0 1px 2px rgba(0,0,0,0.1); | |
transition: box-shadow 0.3s ease-in-out; | |
} | |
.div:hover { | |
box-shadow: 0 0px 30px rgba(13,115,142,0.2); | |
} |
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
.image-overlay { | |
background-color:rgba(0,0,0, 0.7); | |
position:absolute; | |
height:100%; | |
width:100%; | |
opacity: 1; | |
transition:opacity 1s; | |
} | |
.image-overlay-wrapper .et_pb_button { |
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
/* Animated Overlay */ | |
.image-overlay-wrapper { | |
height:500px; | |
} | |
.image-overlay { | |
background-color:rgba(0,0,0, 0.7); | |
position:absolute; | |
height:100%; | |
width:100%; |
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
<script> | |
(function($) { | |
// Insert your jQuery here | |
})( jQuery ); | |
</script> |
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
/*---------------------------- | |
Slider Customization | |
created by: Jake Smith | |
----------------------------*/ | |
/* Blue box sizing and spacing */ | |
/* Entire Slider */ | |
#cm-slider .et_pb_slider { | |
} |