Background Image
LihiL
Joined: 2013-11-16
Posts: 13 |
![]() |
Hi guys, I would like to change the background of my Gallery - and put an image file instead (as a background). How can I actually do that? Thanks! Lihi |
|
floridave
![]()
Joined: 2003-12-22
Posts: 27300 |
![]() |
http://galleryproject.org/node/111802 Dave |
|
LihiL
Joined: 2013-11-16
Posts: 13 |
![]() |
Well, I tried adding this: #doc4 { But nothing happens. Why? Thanks Lihi |
|
floridave
![]()
Joined: 2003-12-22
Posts: 27300 |
![]() |
what if you add it lower in the file? Dave |
|
LihiL
Joined: 2013-11-16
Posts: 13 |
![]() |
Nope. Nothing happens |
|
floridave
![]()
Joined: 2003-12-22
Posts: 27300 |
![]() |
URL to offending page. Dave |
|
floridave
![]()
Joined: 2003-12-22
Posts: 27300 |
![]() |
See if changing to a relative url works. #doc4 { background-image:url('http://www.feelsengine.com/feels-engine-wallpaper.jpg'); background-repeat:no-repeat; background-attachment:fixed; background-position:center; } to #doc4 { background-image:url('../feels-engine-wallpaper.jpg'); background-repeat:no-repeat; background-attachment:fixed; background-position:center; } or move the image to the css directory and try: #doc4 { background-image:url('feels-engine-wallpaper.jpg'); background-repeat:no-repeat; background-attachment:fixed; background-position:center; }
Dave |
|