Insert intro text on /s page?

After doing a bit of looking around on Google and SO, I cobbled together a pure CSS version:

.above-main-container-outlet.subscriptions-campaign::after {
  content: "Whatever text I want to put here! \A This is a new line! \A";
  white-space: pre;
}

Using \A as a new line character.

I hope that helps?

2 likes