Skip to main content

Add Button next to join our mailing List 

Add to before </body> in advanced preferences 

<script>

// Get the existing button element
var originalButton = document.getElementById('engage-button');

// Create a new anchor element
var newButton = document.createElement('a');

// Set the href attribute to the new URL
newButton.href = 'PUT THE URL HERE';

// Set the text content for the new button
newButton.textContent = 'DISPLAY TEXT HERE';

// Copy classes from the original button
newButton.className = originalButton.className;

// Add a unique ID to the new button
newButton.id = 'newsletter-button';

// Insert the new button before the original one
originalButton.parentNode.insertBefore(newButton, originalButton);
</script>

Add to styles (adjust padding accordingly) 

#newsletter-button {
    /* Add specific styles for the new button */
    margin-right: 190px; /* Example: adding margin to separate buttons */
}