Hi there I am having some trouble aligning an embedded newsletter signup to the center of the page. I have created a shortcode:
<div id="custom-substack-embed"></div>
<script>
window.CustomSubstackWidget = {
substackUrl: "privseclaw@substack.com",
placeholder: "example@yourmail.com",
buttonText: "Subscribe Now",
theme: "custom",
colors: {
primary: "#000000",
input: "#3E3E3E",
email: "#00D97E",
text: "#F4F4F4",
},
// Go to substackapi.com to unlock custom redirect
};
</script>
<script src="https://substackapi.com/widget.js" async></script>
and I am using this to imbed the signup form in the content:
{{< substackiframe src="https://privseclaw.substack.com/embed" >}}
How can I change the alignment of the embedded newsletter signup so that it is centered?
Many thanks in advance!