Cynthia
Cynthia

Reputation: 5403

Wordpress individual posts display gone wonky

I have a very basic theme that I created and I'm running into a problem that I've never experienced with any other theme I've made.

The homepage, pages and blog category pages display fine. When I click on an individual blog post, though, the post appears at the TOP of the page, UNDER the header and nav bar.

http://s5.mynewsitereview.com/category/blog/ - this is correct

http://s5.mynewsitereview.com/test-post-one/#more-1 - this is not

Please help!

Upvotes: 0

Views: 62

Answers (2)

Boris Belenski
Boris Belenski

Reputation: 1412

The problem is because <div id="main-pages">

have style:

overflow: hidden;

EDIT: There is one easy to implement full height layout with header, footer and columns.

Upvotes: 1

Hobo
Hobo

Reputation: 7611

I think the problem is the page is scrolling (oddly, I agree) to your more-1 anchor because you've specified that in your link (after the #).

I think you have two options:

  1. Get rid of the anchor in your link (http://s5.mynewsitereview.com/test-post-one/ looks fine), or
  2. Move (to the top of your post) or remove altogether the anchor (<span id="more-1"></span>)

Upvotes: 1

Related Questions