pictures without border..is it possible?
jabadco - June 13, 2008 - 18:47
hello
I am using drupal 5.x and using a theme called ad_novus.
When I put a image in the body of a node, it always appears with a tiny border, even if in the html I put border 0, it appears.
How could I change that?
Thanks a lot

=-=
check the style.css file for .img and inspect the css for where the border is coming from.
also helps to use the firefox browser and the firebug addon to narrow down what is going on with your css files.
_____________________________________________________________________
My posts & comments are usually dripping with sarcasm.
If you ask nicely I'll give you a towel : )
I had this same question
If you go into the style.css file within your template folder; there should be something that looks like this:
}.node img{
border:1px solid #CECECE; padding:4px;
}
Change the border to 0px
However, I realized that if you want to add a border to an image, it won't work once you have changed this setting. Does anybody know how to override the css and put a border around an image?