Forum index / Photoshop, Editing & Design / From Photoshop To Dreamweaver

From Photoshop To Dreamweaver

9 posts · page 1 of 1

post #1
24 August 2010, 17:08 UTC#1
OK, so I've made my site in photoshop, sliced everything thats needs to be sliced, transfered it over to dreamweaver and everything looks cool, BUT......

.....when I link images I get these white lines appear, they also appear when I preview in IExplorer.

Anyone know how I can get rid of these annoying white lines???
post #2
24 August 2010, 18:38 UTC#2
www.geocities.com
post #3
24 August 2010, 20:51 UTC#3
im not saying this to be a dick, but seriously, google this shit.

its the only way ul learn.. no point waiting for a response from us, cos in the time it takes to get a real answer here, u could of googled it, learnt the problem and probs learnt 10 new things as well.

its the way we all learnt photoshop, dreamweaver etc.. try and error and google.
post #4
24 August 2010, 21:57 UTC#4
[quote name='nickstatler' date='24 August 2010 - 07:38 PM' timestamp='1282675111' post='566176']
www.geocities.com
[/quote]

Fuck..........You
post #5
25 August 2010, 08:11 UTC#5
You mean your getting white lines round the images? If so just change the border to 0.
post #6
25 August 2010, 11:53 UTC#6
Ive managed to get rid of the white lines but now im getting blue and purple boarders about my linked images, the border is set to 0 but it still shows

iv been on google and everyones saying to put "a img {border: none; }" in my code but it still doesnt work

....anybody????
post #7
25 August 2010, 18:42 UTC#7
If its like a single image with a border try adding this to it, eg:

[code]<img src="massivecock.gif" alt="BenCKa's piece" border=0>[/code]

Or you can add this to your CSS:

[code]img {
border: 0px;
}

a.img {
border: 0px;
}
[/code]

AND/OR EDIT

[code]a:link {
border:none;
}[/code]

Either way should work, CSS way is better though.
post #8
26 August 2010, 16:15 UTC#8
thanks mate, but I got it sorted now
post #9
27 August 2010, 15:43 UTC#9
NP.