Title on the front page
- The topic ‘Title on the front page’ is closed to new replies.
Need help? Check out our Support site, then
I do not want to have the site title on my featured image on the front page. How can I change that?
The blog I need help with is: (visible only to logged in users)
Hi Luiz,
Thank you for getting in touch with us on this question. You can do a few things here:
1. Remove the actual title of “Blog” on the blog page within the page editor.
OR
2. Upgrade your WordPress.com package to include the Custom Design options (http://en.support.wordpress.com/custom-design/) and add a bit of CSS to hide the page title on the homepage. Something like this should work:
.home .marquee-body h1 {
display: none;
}
Thanks, please let us know if we can help with anything else.
TT
Hi Travis,
I already have the Business Plan in WordPress. There is no other upgrade.
Solved it. Tks a lot.
Interesting. It worked on RedeVizinhos.wordpress.com. But, the code did not work in BlogGrupoCooperar.wordpress.com, in which I use the same theme. What is the reason for that?
Definitely, no problem. Happy to help!
Hmm, definitely odd. I’m not seeing the added code on the BlogGrupoCooperar.wordpress.com. I would ensure that it was saved and added properly, with a proper CSS closing element “}”.
Or simply remove the actual page title within the page editor for your ‘Blog’ page.
Oh, now I see it. The ‘Blog’ page is actually set as the homepage, so you could edit that same code to be:
.blog .marquee-body h1 {
display: none;
}
Thanks!