Looks fine, you got it fixed i assume. Here's the code anyway.
| Code: |
img { border: 0px; } |
This tells the browser that anything with an image tag shouldn't have a border. you can remove the border completly on all images using the above code.
The line is most likely caused or can be caused because the image is hyperlinked. So you can set CSS styling to links. which will effect only the image.
| Code: |
A img{ border: 0px; } |
Any hyperlinked image won't have a border
all links won't have a border. Using the below code you can select a certain type of link, which makes it possible for you to change CSS based on the users interaction with the link. This is the best way yo have css effects on text/images such as rollovers.
| Code: |
A:link A:visited A:active A:hover |
Post edited at 3:21 am on July 2, 2009 by Daveh