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
//-----------------------Remove User Agent Focus Styling----------------------- | |
input:focus, textarea, [contenteditable="true"]:focus { | |
outline: none; | |
} |
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
var names = []; | |
document.querySelectorAll('.acf-field').forEach(function(field){ | |
names.push( field.dataset.name ); | |
}); | |
console.log("LIST START\n\n"+ names.join('\n')+"\n\nLIST END"); |
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(function($){ | |
var classes = []; | |
$('.page-id-x [class]').each(function(){ | |
$($(this).attr('class').split(' ')).each(function() { | |
if (this.length>0 && $.inArray(this.valueOf(), classes)==-1) { | |
classes.push( '.' + this.valueOf() ); | |
} | |
}); | |
}); | |
console.log("LIST START\n\n"+ classes.join('{}' + '\n')+"\n\nLIST END"); |
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
<!-- Hard Coded Subject Line for Client Approval--> | |
<table bgcolor="#ffffff" width="100%" style="color: #ffffff;max-width:100%; min-width: 320px;" cellspacing="0" cellpadding="0"> | |
<tr> | |
<td style="padding: 40px 30px; width: 100%; max-width: 100%;"> | |
<table align="center" width="100%" style="color: #ffffff;max-width:650px; min-width: 320px;" cellspacing="0" cellpadding="0"> | |
<tr> | |
<td style="text-align: left; font:16px/18px Arial, Helvetica, sans-serif; color:#666666;"> | |
<b>Subject:</b> {{ content.subject }} | |
</td> | |
</tr> |
NewerOlder