Skip to content

Instantly share code, notes, and snippets.

@skipshean
skipshean / easirent.css
Created January 29, 2016 20:58
Example easirent CSS
<!-- the actual drop down styling -->
select[multiple], select[size]{
margin: 3px; <!-- space around the individual fields -->
background: transparent;
padding: 5px 35px 5px 5px; <!-- space inside of each field to the text -->
font-size: 16px;
border: 1px solid #ccc; <!-- the light gray line around each field -->
<!-- these clear the default styling of the drop down menus and make it something you can style -->
-webkit-appearance: none;
@skipshean
skipshean / infusionsoft-email-button.html
Last active November 25, 2015 19:32
Infusionsoft email buttons
<table align="center" border="0" cellspacing="0" cellpadding="20">
<tr>
<td>
<div>
<!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="#" style="height:36px;v-text-anchor:middle;width:250px;" arcsize="5%" strokecolor="#689D00" fillcolor="#689D00">
<w:anchorlock/>
<center style="color:#ffffff;font-family:Helvetica, Arial,sans-serif;font-size:16px;">Save Your Seat Now &rarr;</center>
</v:roundrect>
<![endif]-->
<form action="http://www.networkcycle.com/leads/addlead" name="leadfrm" id="leadfrm-1col" class="form-wrapper" method="post">
<input type="hidden" value="[hash code1]" name="brand_id">
<input type="hidden" value="[hash code 2]" name="site_id">
<input type="hidden" value="[hash code 3]" name="verify_string">
<input type="hidden" id="redirect" value="thank-you-page/" name="redirect">
<div class="1colform-content">
<fieldset id="user-details-1col">
<label for="firstName-l">First Name*:</label>
<input type="text" value="" maxlength="200" id="firstName" name="firstName" />
@skipshean
skipshean / gist:910d6fa0a3e202568bd5
Created July 12, 2015 17:36
Template-Tags from bootstrapwp font awesome section
if ( ! function_exists( 'bswp_posts_navigation' ) ) :
/**
* Display navigation to next/previous set of posts when applicable.
*
* @todo Remove this function when WordPress 4.3 is released.
*/
function bswp_posts_navigation() {
// Don't print empty markup if there's only one page.
if ( $GLOBALS['wp_query']->max_num_pages < 2 ) {
return;
@skipshean
skipshean / stickyBottom
Created July 6, 2015 20:35
Stick HTML div to bottom
.stickyBottom{
position: fixed;
bottom: 0px;
z-index: 1;
}