ATTENZIONE:Originariamente inviato da Caleb
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>
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!
![]()