Skip to content

Instantly share code, notes, and snippets.

View tdominey's full-sized avatar

Todd Dominey tdominey

View GitHub Profile
@tdominey
tdominey / gist:9771240
Last active August 29, 2015 13:57
Hide the share link in the lightbox. Enter in Site's css editor. Should work with any theme.
body#k-lightbox #lbox_share {
display:none !important;
}
@tdominey
tdominey / gist:9626930
Created March 18, 2014 18:56
Adding labels to navigation sections in Madison 2
#col nav section:nth-child(1) ul:before {
content:"First";
margin-bottom:5px;
display:block;
}
#col nav section:nth-child(2) ul:before {
content:"Second";
margin-bottom:5px;
display:block;
@tdominey
tdominey / gist:9608685
Created March 17, 2014 21:25
Hide pagination and title on Ensemble content page
body.k-lens-content a.pag { display:none; }
body.k-lens-content h3 { display:none; }
@tdominey
tdominey / gist:9608637
Created March 17, 2014 21:22
Hide pagination links on album page in Ensemble
body.k-lens-album a.pag { display:none; }
@tdominey
tdominey / gist:9577643
Created March 16, 2014 02:23
Force portraits in Axis to height of landscapes
body.k-lens-content img.img-content {
max-height:505px !important;
width:auto;
}
@tdominey
tdominey / gist:9473500
Created March 10, 2014 20:22
iOS 7.1 minimal-ui viewport example. Gets rid of the huge browser header/footer in Safari on iPhones.
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimal-ui" />
@tdominey
tdominey / gist:9410914
Created March 7, 2014 12:52
Remove Twitter button, center Facebook button in Axis
#social-bttns .cell.right {
display:none !important;
}
div#social-bttns div.cell.left > div {
float:none !important;
}
div#social-bttns div.cell {
width:100%;
@tdominey
tdominey / gist:9276670
Last active August 29, 2015 13:56
Show featured content on content.lens if content is featured
<koken:if true="content.featured">
<koken:load source="featured_content">
<ul>
<koken:loop>
<li><koken:img preset="small" /></li>
@tdominey
tdominey / gist:9156417
Created February 22, 2014 15:17
Select displaying essay archive links
<koken:dates limit_to="essays">
<koken:select label="Select month" />
</koken:dates>
@tdominey
tdominey / gist:9103546
Created February 19, 2014 23:06
Remove lightbox link on Axis
body.k-lens-content ul#nav-content li:nth-child(2) {
display:none !important;
}