Skip to content

Instantly share code, notes, and snippets.

View shameemreza's full-sized avatar
🦜
Talk is cheap. Check My Code, Blog and Portfolio.

Shameem Reza shameemreza

🦜
Talk is cheap. Check My Code, Blog and Portfolio.
View GitHub Profile
@DustonMcGroarty
DustonMcGroarty / genesis-sales-page.php
Last active July 14, 2019 20:46
Genesis Sales Page Template
<?php
/*
Template Name: Sales Page
*/
//* Add custom body class to the head
add_filter( 'body_class', 'dm_add_body_class' );
function dm_add_body_class( $classes ) {
$classes[] = 'dm-sales';
@srikat
srikat / style.css
Created January 13, 2014 02:17
CSS to make the output of Jetpack Subscription widget better in Genesis child theme, News 2.1.2. Details with screenshots: https://twitter.com/srikat/status/422551589824376832
.jetpack_subscription_widget .widget-wrap {
background: url("images/enews.png") no-repeat 260px 15px;
}
#subscribe-email #subscribe-field {
width: 175px;
padding: 5px;
font-size: 13px;
margin: 10px -2px 0 0;
}