What\'s wrong with this multiple background CSS line. Firefox 4 ignores it (as it does when there\'s a syntax error).
background: rgba(255,0,0,0.2), url(\"st
It should be background: rgba(255,0,0,0.2) url("static/menubg.jpg"); without the ,
background: rgba(255,0,0,0.2) url("static/menubg.jpg");
,