Dreamweaver images all FUKCED up when linking...HELP!

skorpion

Regular Member
Joined
Dec 28, 2008
Messages
266
Reaction score
58
Im hoping someone better at DR than me can help me with this little problem.

Ill PP you a dollar lol

Ive got a PS layout that Ive sliced up and exported to an html file that I am now editing it DR. Everything is good until I link an image to another page on the site. Then an outline or border of some type goes all around the image and my entire site (made up of slices) are all separated and out of wack.

Any ideas??

Thank you
 
Add border=0 to the image tag

For example
Code:
<a href="page2.html">
   <img src="pic1.jpg" [I]border=0[/I] alt="">
</a>
 
Or better yet, make a CSS rule for the img like img {border: none;} and you won't have to constantly add the "border=0" to every instance of an image.
 
Back
Top