Hello,

When editing a node content in CKEditor with the Pixture theme active, the text alignment defaults to center. But when saving the node content, it reverts to left-justified. It's impossible to get centered text without editing the source code of the node content.

This bug doesn't happen when - for example - the Garland theme is active. I've tried version 6.x-1.x-dev and version 6.x-1.8 and they both have the same problem.

I found out that this bug can be fixed by commenting out this line of the "body" block in Pixture style.css file:
text-align: left; /* IE5 hack */

The whole body block becomes:

body {
        font-family: "Helvetica neue", Helvetica, Arial, Verdana, sans-serif;
        font-size:12px;
        color: #252525;
        margin: 0;
        padding: 0;
        /*text-align: center;  IE5 hack */
        background: #fbf6ed url(bg-wall.png) repeat-x top left;
        min-width: 800px;
}

It doesn't seem to break anything else when doing that.

Cheers,
- Stéphane