Created
November 29, 2016 21:21
-
-
Save jpen365/1fe6f1942945696f2c1db88dcde6b812 to your computer and use it in GitHub Desktop.
Wrap Twenty Seventeen front page panel titles in spans with ids and padding
This file contains hidden or 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
jQuery( "h2.entry-title" ).each( function() { | |
var panelId = jQuery( this ).html().toLowerCase().replace(/\s+/g, "-"); | |
jQuery( this ).wrapInner(function() { | |
return "<span style='padding-top:96px;' id='" + panelId + "'></span>"; | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment