Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

> >

The websites we have are Wordpress ones. I add new things on okay but the issue is a glitch that has always been on it.

If you look on this page after the post the writing underneath is like two lines on top of each other.

http://westlancspositiveliving.org.uk/2012/01/reindeer-dash-important-news/

How can I fix this ?

Thanks

Edward.

share|improve this question

1 Answer

Find in your CSS (on line 915 of style.css for the Twenty Ten theme):

#nav-below {
   margin: -18px 0 0 0;
}

change to:

#nav-below {
   margin: 10px 0;
}

What's happening is that the #nav-below is getting pushed up into your other content due to the minus. It's not a glitch either or relevant to WordPress itself, someone just made some mistakes when styling the CSS.

share|improve this answer
Tried that. But on our site it says its using- Twenty Ten Child I can edit Twenty Ten Theme and Twenty Elebven theme. If I look on Twenty Ten Child its not the same. Thanks. – user11959 Jan 11 '12 at 23:11

protected by Community Jan 12 '12 at 17:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.