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
/* 5th @media query trigger point */ | |
.site-header { | |
min-height: 80px; | |
} | |
.header-image .site-header .wrap .title-area { | |
width: 320px; | |
height: 80px; | |
background-size: 320px 80px; | |
} |
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
if( file_exists( dynamik_get_stylesheet_location( 'path' ) . 'my-custom-functions.php' ) ) | |
{ | |
require_once( dynamik_get_stylesheet_location( 'path' ) . 'my-custom-functions.php' ); | |
} |
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
/** | |
* Convert Catalyst Hooks to their Genesis counterparts. | |
* | |
* @since 1.0 | |
*/ | |
function catalyst_transport_hook_converter( $catalyst_hook, $html5 = false ) | |
{ | |
$catalyst_to_genesis_hooks = array( | |
'catalyst_hook_in_head' => 'wp_head', | |
'catalyst_hook_before_html' => 'genesis_before', |
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
/* Column Classes | |
------------------------------------------------------------ */ | |
.five-sixths, | |
.four-fifths, | |
.four-sixths, | |
.one-fifth, | |
.one-fourth, | |
.one-half, | |
.one-sixth, |
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
/*** EZ Column Styles ***/ | |
.ez-five-sixths, | |
.ez-four-fifths, | |
.ez-four-sixths, | |
.ez-one-fifth, | |
.ez-one-fourth, | |
.ez-one-half, | |
.ez-one-sixth, | |
.ez-one-third, |
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_action( 'wp_enqueue_scripts', 'custom_enqueue_scripts' ); | |
/** | |
* Enqueue an external Custom Javascript file to Dynamik Website Builder | |
*/ | |
function custom_enqueue_scripts() | |
{ | |
wp_enqueue_script( 'my-scripts', dynamik_get_stylesheet_location( 'url' ) . 'my-scripts.js', array( 'jquery' ), CHILD_THEME_VERSION, 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
add_action( 'wp_enqueue_scripts', 'custom_add_stylesheet' ); | |
/** | |
* Enqueue an external Custom Stylesheet to Dynamik Website Builder | |
*/ | |
function custom_add_stylesheet() | |
{ | |
wp_enqueue_style( 'my-custom', dynamik_get_stylesheet_location( 'url' ) . 'my-custom.css', false, filemtime( dynamik_get_stylesheet_location( 'path' ) . 'my-custom.css' ) ); | |
} |