﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
26531	background-image not working in stylesheet	billwagner3	nobody	"I have asked on stackoverflow and searched for anyone else with this issue in django-users and have not found anything.

I have been trying to get a background image to work in my stylesheet, but have not had success. It works fine with style tags in the html doc but putting it in the css file doesn't work. All other css code in the css file works, ergo I have come to the conclusion that this is a software bug. 

Both of these formats I have tried in the stylesheet to no avail: 

body  {          
	background-image: url(""home/billwagner3/webapps/project_vault/Kitchen.jpg"");
	background-repeat: no-repeat; background-attachment: fixed; 
}

and..

body  {          
	background-image: url('{% static ""Kitchen.jpg"" %}');
	background-repeat: no-repeat; background-attachment: fixed; 
}

The latter works in the html doc by the by.

All other code in the css file, as I mentioned earlier, works except for this. All other css files (all in the designated static_files directory) are fully functioning as well. It's just this one property--background-image, that will not work when couched in a css file.
"	Bug	closed	Uncategorized	1.9	Normal	invalid	background-image, css, static-files		Unreviewed	0	0	0	0	0	0
