basta mettere le immagini come background nel css e non come img nel codice
ad esempio, questo:
diventa questo:codice:<html> <head> </head> <body> [img]immagini/immagine1.jpg[/img] </body>
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>