Skip to content

Instantly share code, notes, and snippets.

View thewebprincess's full-sized avatar

Dee Teal (she/her) thewebprincess

View GitHub Profile
@thewebprincess
thewebprincess / genesis_social_icon_menu.css
Created January 24, 2013 02:13
Social media Icon Menu for Genesis Theme Framework featured here : http://thewebprincess.com/social-media-icon-menu/
/* Social Icons Menu
------------------------------------------------------------ */
/*This and the next selector overrides the usual header/footer widget CSS padding etc on the links just for the social icons widget*/
#header #menu-social-menu a {
margin: 5px;
border: none;
padding: 0px;
}
#footer-widgets ul#menu-social-menu li {
@thewebprincess
thewebprincess / petion-cpt.php
Last active August 29, 2015 14:05
The building blocks for using Gravity Forms to build an online petition
<?php
// ADDING CUSTOM POST TYPE
add_action('init', 'all_custom_post_types');
function all_custom_post_types() {
$types = array(
// Pledge Items
array('the_type' => 'pledge',