Can you post a link to your site? Just looking at code is much harder (and sometimes useless) for issues like this.
Alternatively, use a tool such as Firebug to “inspect” the images and see which CSS is creating the borders.
This is my website’s url http://www.stefanomontagna.com/(still testing it).
This is a page with some image in it: http://www.stefanomontagna.com/foto/reportage/
I removed (partially, as a matter of fact) the border by adding this style="border: medium none ; padding: 0pt;" alt="Picture" in the <a> tag, but it’s kind of annoying to do so for each image and it doesn’t remove the border entirely.
If you could help me to figure out how to remove the border autmatically by customize my theme template, I’d be very thankful!
s.
Look in your stylesheet line 29 for this:
img.aligncenter, img.alignright, img.alignleft {
background: none repeat scroll 0 0 #F3F3F3;
border: 1px solid #DDDDDD;
padding: 4px;
text-align: center;
}
That’s adding borders to images.
Thank you so much!!!
I finally did it!
s.