Skip to content

Instantly share code, notes, and snippets.

@dotspencer
Last active May 18, 2016 20:28
Show Gist options
  • Save dotspencer/36c0e2e5089641625e91ff314df08794 to your computer and use it in GitHub Desktop.
Save dotspencer/36c0e2e5089641625e91ff314df08794 to your computer and use it in GitHub Desktop.
EGI project download shortcode. Simple One Tag Shortcode.
<a id="pdf-link" href="{src}" target="_blank">
<span>Download PDF</span>
</a>
<style>
#pdf-link{
background-color: #50575e;
color: #fff;
font-family: 'Open Sans',sans-serif;
font-weight: 400;
font-size: 12px;
line-height: 24.5px;
padding: 10px 20px;
margin-left: -4px;
display: inline-block;
transition: all .2s;
border: 3px solid transparent;
border-bottom: 2px solid transparent;
}
#pdf-link:hover{
background-color:rgb(56, 59, 63);
}
.hidden{
display:none;
}
</style>
<script type="text/javascript">
// Adds the link to the end of the tabs
jQuery('#pdf-link').appendTo('.vc_tta-tabs-list');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment