Removing Static Pages Titles from Blogger Dynamic View

I've seen 3 questions asking about ways to hide a static page's title in Dynamic Views. In an xml template, you can easily hide your static pages title by inserting HTML conditional tags to your template. In Dynamic View, it's even easier.


If you're using the old Blogger interface: Go to Dashboard - Design - Template Designer - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.

If you're using the new Blogger interface: Go to Dashboard ('House' symbol) - Template - Customize - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.

.viewitem-inner .viewitem-content .article .article-header h1.title a, .sspe{
display: none !important;
}