This file contains 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 this after the .site-header { position: static; } part of the (max-width: 1023px) media query */ | |
.front-page .site-header { | |
position: fixed; | |
} |
This file contains 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 | |
// Force content-sidebar layout | |
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' ); | |
genesis(); |
This file contains 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
/* Logo, hide text */ | |
/* Existing CSS for reference */ | |
.header-image .site-header .wrap { | |
background: url(images/logo.png) no-repeat left center; | |
padding: 0; | |
} | |
/* Show alternate logo on Date archives */ | |
.header-image.date .site-header .wrap { |
This file contains 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 | |
/** | |
* Kickstart Pro | |
* | |
* @author Lean Themes | |
* @license GPL-2.0+ | |
* @link http://demo.leanthemes.co/kickstart/ | |
*/ | |
add_action( 'genesis_after_header', 'kickstart_page_before' ); |
This file contains 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
/* Existing style.css line to target */ | |
.site-header .outer-wrap { | |
background-color: #000; | |
background-color: rgba( 0, 0, 0, 0.5 ); /* e.g. 0.2 would be lighter, 0.8 would be darker etc */ | |
} |
This file contains 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 include the opening php tag shown above. Copy the code shown below. | |
add_action( 'genesis_entry_content', 'kickstart_post_featured_image', 9 ); | |
/** | |
* Display Featured Image automatically at top of post (single view) | |
* | |
*/ | |
function kickstart_post_featured_image() { | |
// If we're not viewing a post get out of here |
This file contains 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
/* The following is an extract from the style.css file, so the line numbers won't match the original */ | |
/* Original style.css line number 1323 */ | |
.header-image .site-title a { | |
background: none; | |
float: left; | |
height: 80px; /* Adjust to match new logo.png height */ | |
max-height: 80px; /* Adjust to match new logo.png height */ | |
padding: 0; | |
width: 155px; /* Adjust to match new logo.png width */ |
This file contains 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
/* Logo, hide text */ | |
/* Existing CSS for reference */ | |
.header-image .site-header .wrap { | |
background: url(images/logo.png) no-repeat left center; | |
padding: 0; | |
} | |
/* Show alternate logo on Date archives */ | |
.header-image.page-template-page_blog .site-header .wrap, |
This file contains 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
.page-contact .entry-content h2, | |
.page-contact .entry-content h3, | |
.page-contact .entry-content h4 | |
.page-contact .entry-content h5, | |
.page-contact .entry-content h6 { | |
color: #fff; | |
} |
This file contains 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
.page-template-template-unstretch .before-content-unstretch { | |
margin-bottom: -124px; | |
position: relative; | |
text-align: center; | |
top: -116px; | |
} | |
@media only screen and (max-width: 900px) { | |
.page-template-template-unstretch .before-content-unstretch { |