Background image with theme css
Permalink
Hello
I'm trying to add a background image by adding this code to the theme css but it's just not working.
http://areiabranca-lodge.com/
body {
background-image: url(images/Beach_background.jpg);
}
When I look at the page in Firebug, the typography.css doesn't even refer to it.
Any ideas???
Many thanks . . .
I'm trying to add a background image by adding this code to the theme css but it's just not working.
http://areiabranca-lodge.com/
body {
background-image: url(images/Beach_background.jpg);
}
When I look at the page in Firebug, the typography.css doesn't even refer to it.
Any ideas???
Many thanks . . .
Thanks for the reply.
Like I said, I put it in the theme css, see attached screenshot.
Any ideas???
Rgds
Like I said, I put it in the theme css, see attached screenshot.
Any ideas???
Rgds
I've now put the code in main.css but now Concrete5 is adding code to the statement.
I put (and which does work)
body {
background-image:url(http://areiabranca-lodge.com/files/1113/5300/7959/Beach_background.jpg);
background-attachment:fixed;
}
The css that is generated is
body {
background-attachment: fixed;
background-image: url("/concrete/themes/greek_yogurt/http://areiabranca-lodge.com/files/1113/5300/7959/Beach_background.jpg");
}
What is happening - I'm beginning to lose the will :)
Thanks in advance
I put (and which does work)
body {
background-image:url(http://areiabranca-lodge.com/files/1113/5300/7959/Beach_background.jpg);
background-attachment:fixed;
}
The css that is generated is
body {
background-attachment: fixed;
background-image: url("/concrete/themes/greek_yogurt/http://areiabranca-lodge.com/files/1113/5300/7959/Beach_background.jpg");
}
What is happening - I'm beginning to lose the will :)
Thanks in advance
I cannot see the bg reference anywhere in your css.
Where did you put it?