Hi @justinrains,
Thanks for using our plugin and for reaching out!
Basically the plugin supports 3 different views – a modal/popup, an inline list, or a vertical list.
You can change the layout into any of those and see how it looks.
If you still need to customize it further, you might need to use some custom CSS.
In case you were referring to the popup/modal option, and you’d like to change the layout inside the modal, you can also use some CSS. Here’s an example for that –
body .secondline-psb-subscribe-modal ul {
margin: 0;
padding: 0;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-gap: 50px;
}
body .secondline-psb-subscribe-modal ul li {
margin: 0;
border: 0;
}