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
3d_rotation | |
ac_unit | |
access_alarm | |
access_alarms | |
access_time | |
accessibility | |
accessible | |
account_balance | |
account_balance_wallet | |
account_box |
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
// Place in functions.php | |
// Enables option to hide Gravity Forms labels in WP backend the right way instead of display: none CSS | |
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' ); |
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
// Place in functions.php | |
// Enables option to hide Gravity Forms labels in WP backend the right way instead of display: none CSS | |
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' ); |
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 { | |
} |
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
/* 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
.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 { |