How to add text between newsletter title and sign up bar in footer menu

Hi using studio theme, I’d like to add text between the email sign up title and bar please. Is there a way to do this without coding within the theme editor or does it require code?

website is doorstepdrip.com

thanks

It can be done by changing code of footer file in theme

@doorstepdrip add below css into base.css file

.footer-block__newsletter:not(:only-child) .footer__newsletter::before {
    content: "Add your desire text overhere"; //add your desire text over here
}