Skip to content

Instantly share code, notes, and snippets.

View kriot1's full-sized avatar

Katrina kriot1

View GitHub Profile
<i class="fa fa-check"></i> Google Friendly.
<i class="fa fa-cog fa-spin"></i> Make it spin like it's 2003!
<i class="fa fa-play"></i> Let it do the talking.
@kriot1
kriot1 / functions.php
Last active August 26, 2015 06:35
Add widgets to admin dashboard
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
// Add Widgets to admin dashboard
genesis_register_sidebar( array(
'id' => 'signup-top',
'name' => __( 'Signup Top', 'themename' ),
'description' => __( 'This is the top section of signup page.', 'themename' ),
) );
genesis_register_sidebar( array(
@kriot1
kriot1 / webinar.html
Last active September 16, 2015 19:37
<div class="two-thirds first">
</div>
<div class="one-third">
</div>
@kriot1
kriot1 / pricing-table.html
Last active September 16, 2015 03:00
HTML for the pricing table
<div class="pricing-table">
<div class="one-third first">
<h4>Product One</h4>
<ul>
<li>Aewesome Thing</li>
<li>Aewesome Thing</li>
<li>Aewesome Thing</li>
<li>Aewesome Thing</li>
</ul>
<a class="button">$100</a>
<div class="pricing-table">
<div class="one-third first">
</div>
<div class="one-third">
</div>
<div class="one-third">
</div>
</div>
<div class="pricing-table"></div>
<h1 class="riot-signup"></h1>
<h4 class="riot-signup"></h4>
<a class="button" href="www.yoursitehere.com">Buy Now</a>
<h1></h1>
<h4></h4>
@kriot1
kriot1 / cta.css
Last active October 17, 2015 01:26
/* Call-to-action Menu Button
--------------------------------------------- */
.genesis-nav-menu li.cta a {
color: #fff;
background-color: #ffa4a3;
border-radius: 25px;
margin-left: 20px;
padding: 20px;
}