Skip to content

Instantly share code, notes, and snippets.

View SimpleProThemes's full-sized avatar

SimpleProThemes

View GitHub Profile
@SimpleProThemes
SimpleProThemes / Sunshine - Store Layout - Home Middle Left
Created January 14, 2016 13:09
Sunshine - Store Layout - Home Middle Left
<h4>IT'S A STEAL</h4>
<h2><i class="icon ion-bag"></i></h2>
<h2>Fashion Sale</h2>
<h2>30% Off</h2>
<h4>WOMEN &amp; KIDS WINTER WEAR</h4>
@SimpleProThemes
SimpleProThemes / Sunshine - Store Layout - Home Top Full Width
Last active January 15, 2016 14:02
Sunshine - Store Layout - Home Top Full Width
<h4>SUNSHINE SHOPPING</h4>
<h2>GET A WARDROBE OVERHAUL</h2>
<h4>Collections from the biggest international brands.</h4>
@SimpleProThemes
SimpleProThemes / Sunshine - Store Layout - Nav Extras
Created January 14, 2016 12:53
Sunshine - Store Layout - Nav Extras
<a href="http://example.com/my-account/" class="button"><i class="icon ion-log-in"></i> Login</a>
@SimpleProThemes
SimpleProThemes / Sunshine - Store Layout - Before Header
Created January 14, 2016 12:48
Sunshine - Store Layout - Before Header
<i class="icon ion-ios-star"></i> Use Code 'SHOP10' and get $100 OFF on Purchase of $899 & above <i class="icon ion-ios-star"></i>
@SimpleProThemes
SimpleProThemes / Sunshine - Business Layout - Footer Widgets - Contact
Created January 14, 2016 08:10
Sunshine - Business Layout - Footer Widgets - Contact
@SimpleProThemes
SimpleProThemes / Sunshine - Business Layout - Home Bottom - Banner 2
Created January 14, 2016 07:39
Sunshine - Business Layout - Home Bottom - Banner 2
<div class="two-thirds first">
<h2>Expert digital media services for your business</h2>
</div>
<div class="one-third">
<a href="#" class="button">Get Free Quote</a>
</div>
@SimpleProThemes
SimpleProThemes / Sunshine - Business Layout - Home Top - Banner 2
Created January 14, 2016 07:25
Sunshine - Business Layout - Home Top - Banner 2
<div class="one-fourth first">
<h2><i class="icon ion-paper-airplane"></i></h2>
<h3>165 Testimonials</h3>
</div>
<div class="one-fourth">
<h2><i class="icon ion-coffee"></i></h2>
<h3>999+ Coffee Cups</h3>
</div>
@SimpleProThemes
SimpleProThemes / Sunshine - Business Layout - Home Top - Banner 1
Created January 14, 2016 07:16
Sunshine - Business Layout - Home Top - Banner 1
<h2>Sunshine Digital Media Platform</h2>
<h3>Web Design + Development + SEO</h3>
@SimpleProThemes
SimpleProThemes / Sunshine - Business Layout - Before Header Text
Created January 14, 2016 07:07
Sunshine - Business Layout - Before Header Text
<div class="text-align-left">
<i class="icon ion-ios-location"></i> Sunshine Digital Media Platform
</div>
<div class="text-align-right">
<i class="icon ion-ios-telephone"></i> 0092765428 &nbsp; <i class="icon ion-ios-email"></i> hello@example.com
</div>
@SimpleProThemes
SimpleProThemes / sticky-menu.js
Last active September 15, 2015 13:55
Sticky Menu Scripts
jQuery(document).ready(function($) {
/* ===================================
* Sticky Nav
* =================================== */
var $header_bar = $site_header = $wpadminbar = 0;
if( $('.site-top').length ) { $header_bar = $('.site-top').innerHeight(); }
if( $('.site-header').length ) { $site_header = $('.site-header').innerHeight(); }
if( $('#wpadminbar').length ) { $wpadminbar = $('#wpadminbar').innerHeight(); }
$(window).scroll(function() {
if ( $(window).scrollTop() > ( $site_header + $header_bar + $wpadminbar ) ) {