Reputation: 5403
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
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
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:
<span id="more-1"></span>
)Upvotes: 1