Skip to content

Instantly share code, notes, and snippets.

@Spellhammer
Spellhammer / addNavLinks.js
Created December 10, 2019 11:24
JS snippet for adding custom nav links quickly in WordPress
@Spellhammer
Spellhammer / MovingObjectSlider
Last active October 25, 2019 12:42
Custom JavaScript "slider" with movable HTML element (similar to Trello.com home page slider) for Oxygen
jQuery(document).ready( function() {
var sliderpos = 1;
sliderEngine( sliderpos );
jQuery('.advance-slider').click( function() {
sliderpos += 1;
sliderEngine( sliderpos );
@Spellhammer
Spellhammer / gist:5c6deef489deed21865f52215fd1425d
Created April 12, 2019 13:27
Flex Gallery last two images only 33.333% width
#_gallery-17-2 a:nth-last-child(1),
#_gallery-17-2 a:nth-last-child(2) {
max-width: calc(33.333% - 10px - 10px);
}
#_gallery-17-2 {
justify-content: flex-start;
}