Remove Title from Homepage
- The topic ‘Remove Title from Homepage’ is closed to new replies.
Need help? Check out our Support site, then
Is it possible to remove the page title from just my Homepage? Is so, how?
The blog I need help with is: (visible only to logged in users)
Hi,
Please try the following CSS snippet .
.home .entry-header-wrapper-single {
display: none;
}
Thanks
Thank you. This removed the title but left a significant gap between the header and the start of the page content – especially on mobile view. Is there a way to remove that space?
Hi,
Can you share screenshot so i will be able to track it more easily.
There is some Gap in the design of theme. I think you are feeling it more sue to removal of Title.
Waiting for your response.
Thanks
Hi,
At mobile displays, it seems to be okay at my end.
Please see the screenshot.
For higher displays, please try the following CSS snippet.
@media (min-width:768px) {
.home .site-content {
padding: 15px 0;
}
}
Hope it will help you.
Thanks