I think if you can find the place where they display the images?
change to
<img src=”lala.com/lala.gif” border=0 >
“border=0” will take out any border around the image
I’m just new to WP and still discoverying, but this is a HTML-general question so I can answer you
Oh! Ick! Better yet update the CSS file to contain it. That way it changes everywhere, otherwise you have to set that on ALL images.
a img {border:none;}
TG
where can I get this hack? I’d love to use it for my reading list.
The wiki should list the hacks. You can also discover the thread that announced the amazon hack by searching the support pages. 🙂
Here is another way to “fix it” without affecting other images and hacking the hack. I’d just give it an id like “amazon” and put #amazon img {border:none}. I prefer no borders around images so I typically set that as the default in the css and turn it “on” wherever I want. In any event, I try to move away from border=”0″ as it is not compliant with strict standards.