WordPress Syntax error...

kim_foxx

Member
Messages
84
Reaction score
0
Points
6
WordPress - Sidebar doesn't show?

Has anyone got any idea why the sidebar doesn't show on my wordpress page when it first loads?
http://kf.x10host.com/ajia/

If you click on any link the side by then loads...
 
Last edited:

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
Look for the line that comments the end of the entry-utility class div. Right now it reads:

HTML:
<!-- .entry-utility --

... the closing > is missing. That means that the end of the post divs (the ones with ids like "post-378") are being commented out, so each of the posts is nested inside the one above. (The comment about closing the post-id div closes the entry-utility comment.) The widgets for your sidebar also end up nested, since the </div> tag that's supposed to close off the postings column ends up being used to close the outer post instead. Your "sidebar" is loading, but it's appearing at the bottom of the page.

Fix that .entry-utility comment, and everything should work out.
 
Top