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
<!-- wp:heading {"textAlign":"center","level":1,"style":{"typography":{"fontSize":"60px"}}} --> | |
<h1 class="has-text-align-center" style="font-size:60px">Logo Goes Here</h1> | |
<!-- /wp:heading --> | |
<!-- wp:spacer {"height":50} --> | |
<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div> | |
<!-- /wp:spacer --> | |
<!-- wp:buttons --> | |
<div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"cyan-bluish-gray","textColor":"black","width":100,"style":{"border":{"radius":5}}} --> |
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
.ngg-gallery-thumbnail img{ | |
-webkit-transition: all 0.3s ease-in-out; | |
-moz-transition: all 0.3s ease-in-out; | |
-o-transition: all 0.3s ease-in-out; | |
-ms-transition: all 0.3s ease-in-out; | |
transition: all 0.3s ease-in-out; | |
} | |
.ngg-gallery-thumbnail img:hover{ | |
-webkit-transform: scale(1.1); | |
-moz-transform: scale(1.1); |
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
### Keybase proof | |
I hereby claim: | |
* I am scottwyden on github. | |
* I am scottwyden (https://keybase.io/scottwyden) on keybase. | |
* I have a public key whose fingerprint is 94B2 4579 72C8 DC58 EF51 E6E9 E850 C8DE 3947 55E8 | |
To claim this, I am signing this object: |
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
The question I had included in the #AskGaryVee book was cut off from the original. | |
People have asked what the full question was. Here it is: | |
"I've been using Instagram with strategic tagging, hashtags and also using the profile URL | |
in order to drive some potential print sales. I've also been manually reaching out to local | |
stores that might be interesting in hanging my photos. Do you have suggestions for me and | |
other photographers about other ways to drive local print sales?" |
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
[ngg_images gallery_ids="1,3" display_type="photocrati-nextgen_basic_singlepic" sort="rand()"] |
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
/** Pro Grid Album Caption */ | |
.nextgen_pro_grid_album > div > a.caption_link { | |
font-family: courrier; | |
} | |
/** Center NextGEN Widget images in Sidebar - the key is to set a specific width */ | |
div.ngg-widget.entry-content { | |
width: 200px; | |
margin-left: auto; | |
margin-right: auto; |
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
/** Increase the default trigger icon sizes */ | |
.fa-shopping-star::before, | |
.fa-shopping-cart::before, | |
.fa-share-square::before, | |
.fa-comment::before { | |
font-size: 20px; | |
} | |
/** Reduce space between Album title and number of photos */ | |
.ngg-album-compact h4 .ngg-album-desc { |
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
/** Left align and set maximum width for ImageBrowser display */ | |
.ngg-imagebrowser { max-width: 600px; float: left; margin-right: 10px; } | |
/** Highlight active image (read: stage image) in NextGEN Pro Lightbox carousel */ | |
.galleria-image.active { border: 10px white solid; } | |
/** Add border and drop-shadow to slideshows */ | |
.slideshow object { border: 10px black solid; box-shadow: 10px 10px 5px red; } | |
/** Customize the colors of the proofing start icon trigger */ |
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
<style id="antiClickjack">body{display:none !important;}</style> | |
<script type="text/javascript"> | |
if (self === top) { | |
var antiClickjack = document.getElementById("antiClickjack"); | |
antiClickjack.parentNode.removeChild(antiClickjack); | |
} else { | |
top.location = self.location; | |
} | |
</script> |
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
// Attachement Page Modifications | |
add_action('generate_rewrite_rules', 'attachment_rewrite_rule_14924'); | |
function attachment_rewrite_rule_14924($wp_rewrite){ | |
$new_rules = array(); | |
$new_rules['attachment/(\d*)$'] = 'index.php?attachment_id=$matches[1]'; | |
$wp_rewrite->rules = $new_rules + $wp_rewrite->rules; | |
} |
NewerOlder