3

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.

4

1 に答える 1

0

テンプレートでそのビットが絶対に見つからない場合は、一時的な解決策として、css でそれをオーバーライドできます。

    body p,
    body li {
        white-space: normal;
    }
于 2012-10-20T09:27:29.683 に答える