The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.
|
 |
|
Dev Shed Forums
> Web Design
> Photoshop Help
|
Please help!
Discuss Please help! in the Photoshop Help forum on Dev Shed. Please help! Photoshop Help forum discussing Photoshop and other Adobe products predating Adobe’s 2005 purchase of Macromedia, including Illustrator, GoLive, LiveMotion, Atmosphere, InDesign and Acrobat.
|
|
 |
|
|
|
|
|

Dev Shed Forums Sponsor:
|
|
|

February 20th, 2012, 09:27 AM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 8
Time spent in forums: 2 h 10 m 25 sec
Reputation Power: 0
|
|
|
Please help!
Hi, I'm designing some graphics for a website. When I added those graphics to the html files, they become slightly blurred (sharpness is reduced). I don't know how to solve that problem. Do you have any idea why that happens? your help is greatly appreciated. Thanks.
P.S- I use photoshop 7.
|

February 20th, 2012, 09:51 AM
|
 |
The Queen of Typos
|
|
Join Date: Sep 2004
Location: San Clemente
|
|
|
What format are you saving them in? Make sure that if you're saving as .jpg that you're not setting a blur. What quality are you saving the images as?
|

February 20th, 2012, 10:37 AM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 8
Time spent in forums: 2 h 10 m 25 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by elkehinze What format are you saving them in? Make sure that if you're saving as .jpg that you're not setting a blur. What quality are you saving the images as? |
Hi elkehinze!, thanks for the reply. I save them as png, i also tried with gif format. I have set blur to 0 and quality is 100. The problem occurs when the images are published in the html files.
|

February 20th, 2012, 11:18 AM
|
 |
The Queen of Typos
|
|
Join Date: Sep 2004
Location: San Clemente
|
|
|
That shouldn't make a difference really. How are you putting them in your html?
|

February 20th, 2012, 12:07 PM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 8
Time spent in forums: 2 h 10 m 25 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by elkehinze That shouldn't make a difference really. How are you putting them in your html? |
I'm new to web designing. I put them in img tags in div tags. I also set width and height to them. I link to the image files i have in my local disk since i haven't yet bought space to host the site. Thanks
|

February 20th, 2012, 12:24 PM
|
 |
The Queen of Typos
|
|
Join Date: Sep 2004
Location: San Clemente
|
|
|
Okay I'm going to assume that you're testing everything locally then?
What browser are you using? Really linking to the file shouldn't change the quality. Are you sure they saved as you expected they would?
|

February 20th, 2012, 12:39 PM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 8
Time spent in forums: 2 h 10 m 25 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by elkehinze Okay I'm going to assume that you're testing everything locally then?
What browser are you using? Really linking to the file shouldn't change the quality. Are you sure they saved as you expected they would? |
Yes. I'm testing my site locally and I'm using firefox. When i save images from photoshop to the local folder, the images have the same appearance as they do in photoshop. But everthing changes when i add it to the page and view it in the browser.
|

February 20th, 2012, 04:28 PM
|
 |
The Queen of Typos
|
|
Join Date: Sep 2004
Location: San Clemente
|
|
|
Paste your code here.
|

February 21st, 2012, 01:32 AM
|
|
Contributing User
|
|
Join Date: Nov 2005
Posts: 137
  
Time spent in forums: 15 h 26 m 20 sec
Reputation Power: 12
|
|
|
are you changing the resolution of your pics when saving?
|

February 21st, 2012, 08:24 AM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 8
Time spent in forums: 2 h 10 m 25 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by elkehinze Paste your code here. |
<div id="left">
<img class="left" src="file://E:/images/small.gif" height="193px" width="292px">
</div>
<div id="center">
<img class="center" src="file://E:/images/c.gif" height="193px" width="292px">
</div>
<div id="right">
<img class="right" src="file://E:/images/map.gif" height="193px" width="292px">
</div>
|

February 21st, 2012, 08:26 AM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 8
Time spent in forums: 2 h 10 m 25 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by KillerWolf are you changing the resolution of your pics when saving? |
Hi thanks for the reply. I never change resolution when saving image files.
|

February 21st, 2012, 08:59 AM
|
 |
The Queen of Typos
|
|
Join Date: Sep 2004
Location: San Clemente
|
|
|
When using the height and width attributes in an image tag the proper way is to do it like this:
<img src="myimage.jpg" height="197" width="200">
Do not put px in there.
|

February 21st, 2012, 10:02 AM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 8
Time spent in forums: 2 h 10 m 25 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by elkehinze When using the height and width attributes in an image tag the proper way is to do it like this:
<img src="myimage.jpg" height="197" width="200">
Do not put px in there. |
Thanks so much. Do you think that it's the reason for that issue?
|

February 21st, 2012, 12:36 PM
|
 |
The Queen of Typos
|
|
Join Date: Sep 2004
Location: San Clemente
|
|
|
Yes I think it could be. The browser may not have been properly sizing the images. Let me know what happens.
|

February 29th, 2012, 01:49 PM
|
|
Registered User
|
|
Join Date: Feb 2012
Posts: 8
Time spent in forums: 2 h 10 m 25 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by elkehinze Yes I think it could be. The browser may not have been properly sizing the images. Let me know what happens. |
Hi, finally I was able to solve the problem. I removed the height and width properties from the img tags and the images look really good.
Also I have another question, If I use a lot of divs in my page layout, will it badly affect the download speed of my site?
Thank you very much for helping me solve the problems.
|
Developer Shed Advertisers and Affiliates
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Rate This Thread |
Linear Mode
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|