What is overriding my header background image????
PermalinkNow, I know this worked outside of C5, so I'm not looking for alternate ways of doing so.
I use firebug to look at the inner "header" element that has the css rule:
background-image: url('<?php echo $this->getThemePath()?>/img/flag.png') no-repeat top left;
But in firebug that rule doesn't show up, only the two rules below it. Wtf?
Oh, and I've tried just using the full path of the background img (http://www.a1kokomo.com/concrete/themes/sandbox/img/flag.png) and still nothing.
Help?
Here's the site: a1kokomo.com/concrete/

Good call though!
http://www.a1kokomo.com/concrete/index.php/tools/css/themes/sandbox...
You can see your php is not being parsed.
#header { background-image: url(http://www.a1kokomo.com/concrete/themes/sandbox/'<?php echo $this->getThemePath()?>/img/flag.png') no-repeat top left; height: 116px; padding: 10px 0 10px 0; }
I would suggest you change it to simply:
background-image: url(img/flag.png);