What I want is a pic to show on full background. But the image is not displaying. The code I have ( the relevant parts ):

<div id="bg"><img src="welcome.psd" width="100%" height="100%" alt="" /></div>

And the CSS:

#bg
{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

I have the .CSS file linked in the head and the 'welcome.psd' is in the same folder as all of the other files. It just shows a broken image pic.

Hopeful for help,

- WolfShield

Recommended Answers

All 3 Replies

psd file cannot be displayed by browser. user jpg, gif, or png

Alright,
Thanks for the help.

- WolfShield

I've never worked with PSD files. There should be a way to get around the problem you're having. Open the file in Photoshop or some preferred software of yours and convert it to the extension you want. Again, you'll encounter a problem displaying it in a browser if you have got the same got as above.

Or try this option. In your css file,

#bg{
 background-image: url('welcome.psd');
 }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.