I don't like the default border around the images and prefer borderless images.
I use this code to implement it.
HTML Code:
.nodecimage {border: medium none; padding: 0px; background-color: transparent}
it works fine, however id should really be used for single instances. What I'm having trouble with is that I can use class="nodecimage" inside the <img> tag. I have to surrounded the <img> around a span and use
HTML Code:
head: .nodecimage {border: medium none; padding: 0px; background-color: transparent} body: <span class="nodecimage"><img src="..."></span>