View Add Facebook Comments on 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
<div id="fb-root"></div> | |
<script>(function(d, s, id) { | |
var js, fjs = d.getElementsByTagName(s)[0]; | |
if (d.getElementById(id)) return; | |
js = d.createElement(s); js.id = id; | |
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=226986334093131"; | |
fjs.parentNode.insertBefore(js, fjs); | |
}(document, 'script', 'facebook-jssdk'));</script> | |
View CSS Slide Rollover Animation
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
.social-slide { | |
height: 48px; | |
width: 48px; | |
margin: 10px; | |
float: left; | |
-webkit-transition: all ease 0.3s; | |
-moz-transition: all ease 0.3s; | |
-o-transition: all ease 0.3s; | |
-ms-transition: all ease 0.3s; | |
transition: all ease 0.3s; |
View Change Comment is Awaiting Moderation Text
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
//Change Comment is Awaiting Moderation Text*http://goo.gl/BdY3R1// | |
add_filter( 'genesis_comment_awaiting_moderation', 'change_genesis_comment_awaiting_moderation' ); | |
function change_genesis_comment_awaiting_moderation() { | |
return 'Thanks for the Comment. It is waiting for approval. Meanwhile visit the other section.'; | |
} |