How can I remove 'Follow us' text from my website footer?

Hi,

In the footer of my website, above the social icons, it has the text “Follow us”. Trying to get this removed, I am using the minimal theme.

My website: psycoskateboards.com

Hey @turtleshorts , you can add this to the end of your theme.scss.liquid file in the Assets directory:

footer h3 {
   display: none;
}

That should do the trick. Love the minimal site btw!

Archie

Thank you!