1. Dacă nu ai fişier .css cu div, p, td etc:
Cod: Selectaţi tot
<div style="text-align: center;"><img src="{IMAGE}"></div>
2. sau cu classe:
- pui în secţiunea <head></head> ceva de genul:
Cod: Selectaţi tot
<style type="text/css">
.centeredImage
{
text-align:center;
display:block;
}
</style>
iar în <body></body>
Cod: Selectaţi tot
<img src="{IMAGE}" class="centeredImage" />
Adaugi în fişierul .css următorul cod:
Cod: Selectaţi tot
.centeredImage {
text-align:center;
display:block;
}
Cod: Selectaţi tot
<img src="{IMAGE}" class="centeredImage" />
Mai se poate în multe feluri face dar astea sunt mai utilizate

Cod: Selectaţi tot
<style type="text/css">
.centeredImage {
text-align:center;
margin-top:0px;
margin-bottom:0px;
padding:0px;
}
</style>