Coding errors! Help!

Status
Not open for further replies.

Ran

Freelance Web Developer & Designer
Oct 1, 2010
124
18
Okay well,
When i go to upload a picture onto a upload thing on the internet.
It does it but when i put it on the website index. Its all blurry.
Can someone help!
 

Kryptos

prjRev.com
Jul 21, 2010
2,205
1,252
Add some height and width to the image with CSS, else if it is very large it will take all the screen.
Also, why don't you just host the image locally?
 

Ran

Freelance Web Developer & Designer
Oct 1, 2010
124
18
Like, If i was uploading an image for a habbo fansite it "ust" to be perfect not blurry or anything but now its blurry. and i don't know how to change the height and so on.
 
Nov 23, 2010
307
2
CSS :
Code:
#image {
background-image: url(http://shit.com/shit.png);
width: (what ever)px;
height: (what ever)px;
background-repeat: no-repeat;

HTML:
Code:
<div id="image">Some text here</div>

Thank me if helped.
 
Status
Not open for further replies.

Users who are viewing this thread

Top