Originariamente inviato da Caleb
basta mettere le immagini come background nel css e non come img nel codice

ad esempio, questo:

codice:
<html>
<head>
</head>
<body>
[img]immagini/immagine1.jpg[/img]
</body>
diventa questo:

codice:
<html>
<head>
   <style type="text/css">
      #img1 {
         background: url(immagini/immagine1.jpg) no-repeat;
         width: 100px;
         height: 100px;
         }
   </style>
</head>
<body>
<span id="img1"></span>
</body>
</html>
ATTENZIONE:
nel CSS devi mettere solo le immagini che non fanno parte dei contenuti e che compongono il layout (la grafica del sito).
è semanticamente errato fare diversamente!