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
jQuery(document).ready(function(){ | |
jQuery("ol.carousel-indicators li:first-child").addClass("active"); | |
}); |
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 | |
function desh_widgets_init() { | |
register_sidebar( array( | |
'name' => __( 'Sidebar', 'twentysixteen' ), | |
'id' => 'blogroll', | |
'description' => __( 'Add widgets here to appear in your sidebar.', 'twentysixteen' ), | |
'before_widget' => '<div id="%1$s" class="widget %2$s">', | |
'after_widget' => '</div>', | |
'before_title' => '<h5>', | |
'after_title' => '</h5>', |
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 comments_template( '', 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
/* wordpress default */ | |
img.alignright {float:right; margin:0 0 1em 1em} | |
img.alignleft {float:left; margin:0 1em 1em 0} | |
img.aligncenter {display: block; margin-left: auto; margin-right: auto} | |
a img.alignright {float:right; margin:0 0 1em 1em} | |
a img.alignleft {float:left; margin:0 1em 1em 0} | |
a img.aligncenter {display: block; margin-left: auto; margin-right: auto} | |
em{font-style: italic;} |
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
ol.commentlist{ | |
margin: 10px 5px; | |
padding: 10px; | |
} | |
.commentlist .comment-body{ | |
padding: 10px; | |
background: #EFEFEF; | |
border: solid thin #DEDEDE; | |
margin: 10px 0; | |
position: relative; |
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_value max_execution_time 300 |
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 echo get_the_date('M j, Y'); ?> |
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_value upload_max_filesize 64M | |
php_value post_max_size 64M | |
php_value max_execution_time 300 | |
php_value max_input_time 300 |
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
function new_excerpt_length($length) { | |
return 90; | |
} | |
add_filter('excerpt_length', 'new_excerpt_length'); |
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
.slicknav_menu { | |
display: block; | |
position: absolute; | |
z-index: 10; | |
top: 0; | |
left: 0; | |
right: 0; | |
background: #fff; | |
} |