Button Color for Purlem Templates

Using a Purlem Template and want to change the button color?

TIP: If you are using instantPURL to host your landing page on our server, you'll need to first request FTP access. 

Change button color in a Purlem Template

Place following code just above the <?php echo $visitor->{"template"}; ?> code in the index.php file.

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function() {
 $('input[type="submit"]').css('background','#A8101C');
 $('input[type="submit"]').css('color','white');
 $('input[type="submit"]').css('text-shadow','0 1px 0 #000');
});
</script>