Skip to content

Instantly share code, notes, and snippets.

View adriannees's full-sized avatar

Adrianne adriannees

View GitHub Profile
/* Add this CSS to your store Styles section under CSS mode */
/* http://www.storenvy.com/ */
/* Photo Slider */
.product_photo_slider {
background: #fff; /*: Product Slider Background :*/
border: 5px solid #eaeaea; /*: Product Slider Border :*/
color: #555; /*: Product Slider Product Description :*/
display: block;
margin-left:8px;
@adriannees
adriannees / Open Graph HTML and header tags
Last active August 29, 2015 14:27 — forked from anneallen/Open Graph HTML and header tags
Add Open Graph HTML and header tags to Genesis Theme
/**Adding the Open Graph in the Language Attributes*/
add_filter('language_attributes', 'child_add_opengraph_doctype');
function child_add_opengraph_doctype( $output ) {
return $output . ' xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"';
}
/** Add Open Graph meta tag to head*/