Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

On the main page of my blog: http://www.laboiteaprog.com, there is a problem like you can see with the archive menu at the right.

I checked the html web page and there are this code

<style type="text/css">
p, li {
    white-space: pre-wrap;
}
</style>

a couple of times.

It seems the problem happens only on the home page.

Like we can see on this one and other pages, the problem is not happening. http://www.laboiteaprog.com/2011/08/language-implementation-patterns.html

when i click on the template and modify html code, i don't see

white-space: pre-wrap;

so i don't know how to remove it.

share|improve this question

1 Answer

up vote 0 down vote accepted

If you absolutely can't find that bit in your templates, you could, as a temporary solution, override it, in your css:

    body p,
    body li {
        white-space: normal;
    }
share|improve this answer
strange, can't find it, surely something generate it. i override the css with you code and that work fine. – user1761239 Oct 20 '12 at 9:39
it could be a plugin that does that, check if you have any plugins that are active on the homepage only – Luca Oct 20 '12 at 9:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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