This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href='#' class='card-simple' title='Best Quality Products'> | |
<div class='card__image image-fit'> | |
<img src='https://images.unsplash.com/photo-1605039982749-c2fe1dd2a588?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3570&q=80' alt='Image'> | |
</div> | |
<div class='card__content'> | |
<h4>Lab Graded Quality</h4> | |
<p>Taking supplements is really about investing in your future self. Paying attention to your body today will help you gauge where you’ll stand tomorrow.</p> | |
</div> | |
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Path to your oh-my-zsh configuration. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
#export ZSH_THEME="robbyrussell" | |
export ZSH_THEME="zanshin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="wide-card"> | |
<div class="wide__content"> | |
<div class="wide__content-inner" style="text-align:left;"> | |
<h3 style="color: #fff; text-align:left;"> | |
GIFT CERTIFICATE | |
</h3> | |
<p style="color: #fff;"> | |
Give the perfect gift every time | |
</p> | |
<a href="/card-link" class="button button--primary button--white"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class='section-accordion'> | |
<div class='section__accordion js-accordion'> | |
<div class='accordion-item js-accordion-item'> | |
<h4 class='accordion__title js-accordion-head'> | |
What is CBD? | |
</h4> | |
<div class='accordion__content js-accordion-body'> | |
<p>CBD is a chemical found in marijuana. CBD doesn't contain tetrahydrocannabinol (THC), the psychoactive ingredient found in marijuana that produces a high. The usual CBD formulation is oil, but CBD is also sold as an extract, a vaporized liquid and an oil-based capsule. Food, drinks and beauty products are among the many CBD-infused products available online.</p> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( $post->post_content=="" ) | |
{ | |
// do something for posts without content | |
} | |
else | |
{ | |
// do something for posts with content | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.opened ul#mobile_menu { | |
max-height: 400px; | |
height: 400px; | |
overflow-y: scroll; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Sizeable Whitelist Login | |
Author: Sizeable Interactive | |
Author URI: https://www.sizeableinteractive.com | |
Version: 0.1 | |
Description: Server agnostic plugin to white list WordPress login screen to IP addresses using a self-authenticating secret URL. | |
**** NOTE *** | |
You must define the SZBL_SECRET_LOGIN_URL or set a login URL in the settings page for this plugin to take affect. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Margin and padding classes | |
// ------------------------- | |
=box-model($direction, $type, $amount, $multiplier) | |
.#{str-slice($type, 1, 1) + $direction}-#{$amount * $multiplier} | |
@if $direction == "" | |
#{$type}: ($amount * $multiplier + px) !important | |
@if $direction == "t" or $direction == "y" | |
#{$type}-top: ($amount * $multiplier + px) !important |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.full-width { | |
width: 100vw; | |
position: relative; | |
left: 50%; | |
right: 50%; | |
margin-left: -50vw; | |
margin-right: -50vw; | |
} |
NewerOlder