The kupu enables to center pictures which results in code like this

<div align="center">
<img class="image-left" alt="t4.jpg" src="test-lvl51/t4.jpg"><br>
</div>

After saving I get

<div>
<img border="0" src="test-lvl51/t4.jpg" alt=""><br>
</div>

I think what is needed here is something like this

css:
img{
display:block; /*allows the element to take auto margins*/
margin:0 auto; /*centers in compliant browsers*/
text-align:center; /*centers in old versions of IE*/
}

in the div statement.

Any ideas how to implement this as a div style?

Thanks
Christian


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to