View Full Version : Tell me why I cant see my background image?


Freddcow
09-10-2009, 04:39 AM
I have a background image and its not showing up. Anyone know why?
My site is:

www.domestica.us

Click view page source to get the code.

Thanks!

iGeek
09-10-2009, 06:04 AM
You need to use url() so CSS knows you're calling an image/link:

body
{
background: url('ksksbg.png') no-repeat bottom left fixed;
}

I've used CSS Shorthand which I find more comfortable to use.

Freddcow
09-10-2009, 07:36 AM
Thanks so much! :)

EthelPatterson
10-16-2009, 11:24 PM
You need to use url() so CSS knows you're calling an image/link:

body
{
background: url('ksksbg.png') no-repeat bottom left fixed;
}

I've used CSS Shorthand which I find more comfortable to use.

THANKYOU! Brilliant :) It worked perfectly for me! Thanks !!

iGeek
10-17-2009, 09:14 AM
Glad to know I helped! :D