Hi! Simple question here, but what would be the custom CSS to get the site title removed on the front page, but not on the projects? Thanks!
-
How to hide site title on home page?
-
I use this!
.slug-home .sitetitle { display: none; }
You'll just need to change '.slug-home' to whatever your URL slug for the page is
:)
-
@willcanning Thanks! I figured it out eventually through trial and error.
-