help

Posted:
Thu Oct 09, 2008 3:32 pm
by talknaija
I am kind of new tojavascript and working on a web site for my son with pictures, i used the javascript in DW for picture swapping but now the smaller images have a blue border to them how cani get rid of the border without affecting the behaviou?

Posted:
Fri Oct 10, 2008 1:26 am
by rangana
Add a CSS instructing the images to hide the borders:
- Code: Select all
<style type="text/css">
img{border:0px;}
</style>
Place that in the head section of your page.
See if it helps.