//* Open dynamik-sticker div
add_action( 'genesis_before_header', 'dynamik_open_sticker', 2 );
function dynamik_open_sticker() {
echo '<div class="dynamik-sticker">';
}
//* Close dynamik-sticker div
add_action( 'genesis_after_header', 'dynamik_close_sticker' );
function dynamik_close_sticker() {
echo '</div>';
}
/* Dynamik Sticker */
body {
padding-top: 150px; /* Equal to header plus nav heights. */
}
.dynamik-sticker {
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
}
.admin-bar .dynamik-sticker {
top: 32px;
}
/* Hide Tagline
.site-description {
line-height: 0;
margin: 0;
padding: 0;
text-indent: -9999px;
}
*/
/* Media Queries */
@media only screen and (max-width: 1140px) {
body {
padding-top: 200px; /* Equal to header plus nav heights. */
}
}
@media only screen and (max-width: 782px) {
.admin-bar .dynamik-sticker {
top: 46px;
}
}
@media only screen and (max-width: 600px) {
#wpadminbar {
position: fixed;
}
}