Blog Post titles not showing up
-
Help! I’m in the process of setting up my blog and I created some test posts that looked fine. The titles were showing up and I was able to click on them and open up my posts on another page. All of a sudden the blog titles are not showing up. I’d appreciate some (not too technical) help. I am by no means a pro with wordpress!
http://twopeaceblog.com/articles/
Thanks!
JessThe blog I need help with is: (visible only to logged in users)
-
Hi there.
In fact, there is a display:none css statement applied to your titles. This means any piece of content tagged as “entry-title” (Or talking properly being from class entry-title) is not displayed. And as you can imagine, your post titles are entry-titles :)
If you added something like the following code to your css code, you could delete it.
.entry-title { display: none; }Otherwise, you can add to your custom css code, this:
.entry-title { display: inline; }I hope this helps.
PS: If you would like more explanations, just make us know.
-
Thanks, that fixes that problem, but the reason I used that code was to remove the ‘Home’ title on the font page. Now its back there. Is there any way to remove that??
-
Ok! I see.
I think you could delete this title in your page editor. If you can’t, you can restrict your display:none statement to a single page. For instance, the page you used as front page is called post-321 so this should work for you.
#post-321 .entry-title{ display:none; }:)
-
That worked!! One more question…how can I remove that line on the bottom of the image on the front page?
-
Glad to read that, @electricsoulbikinilife :)!
About the line, I’m not sure if it is this line the one you want to delete:
.front-page-content-area .with-featured-image { border-bottom: 0; }Please, tell us if this works for you.
-
-
- The topic ‘Blog Post titles not showing up’ is closed to new replies.