Help tweak some code to remove the header from the blog?
-
One of Hatch’s weaknesses seems to be the inability to completely remove the large text/image header without coding knowledge. Luckily, I found a thread regarding this issue, where someone was nice enough to post a snippet removing the header from a static home page:
/*__________static front page: hide title__________*/ .home.singular-page .hentry .entry-title { position: absolute; clip: rect(1px, 1px, 1px, 1px); } /*__________static front page: content fix__________*/ .home.singular-page #content { width: 68.0851%; } .home.singular-page.page-template-fullwidth #content { width: 100%; } .home.singular-page .hentry { width: auto; height: auto; }
This works perfectly for Home and other pages, but – unless I’m seeing another issue – it does not remove the header from the blog. I have nothing at all on my blog page yet – it is simply set as the “Posts” page in the theme’s customization settings – however, there is a broken image frame at the top of the page, as seen here: getsrsly.com/blog
Now I am assuming this is an issue with that pesky header, but I could be wrong. If it is, I would think a snippet of code very similar to that above would knock it out. If it is not, I also welcome any ideas as how to get rid of it. I am very new to css and php, so I greatly appreciate any help!
- The topic ‘Help tweak some code to remove the header from the blog?’ is closed to new replies.