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 | |
add_filter( 'gform_notification', 'leland_disable_gf_notifications', 10, 3 ); | |
function leland_disable_gf_notifications( $notification, $form, $entry ) { | |
$notification = ''; | |
return $notification; | |
} | |
?> |
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
.widget_recent_entries .widget-title, | |
.widget_recent_entries ul { | |
line-height: 48px; /* Height of the news ticker, with text vertically centered */ | |
} | |
.main-navigation { | |
margin-top: 48px; /* This should equal the height of the news ticker (48px, set above) */ | |
} | |
.widget_recent_entries { |
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
/* Summon our "marquee" animation and spread it out over 50 seconds, repeating it forever */ | |
.widget_recent_entries ul { | |
animation: marquee 50s linear infinite; | |
} | |
/* Create our "marquee" animation to move the text from right to left */ | |
@keyframes marquee { | |
0% { transform: translate(100%, 0); } | |
100% { transform: translate(-100%, 0); } | |
} |
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
/* Stop scrolling on hover */ | |
.widget_recent_entries ul:hover { | |
animation-play-state: paused; | |
} |
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
.pingback { | |
margin-bottom: 3em; | |
position: relative; | |
} | |
.pingback .comment-content p { | |
margin: -1em 0 3em; | |
} | |
.pingback .comment-content { |
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
.no-sidebar .content-area { | |
float: none; | |
width: 100%; | |
} |
OlderNewer