Is there any reason multiple backgrounds won't work in the header? I've tried long hand and short hand and declarations on multiple lines and single lines but still nothing.
A single image works fine, but two shows nothing. Inspecting the element shows that the declaration for background-image is missing
A single image works fine, but two shows nothing. Inspecting the element shows that the declaration for background-image is missing

.topbar {
background-image: url("images/turd/header_fade.png"), url("images/turd/header.php");
background-position: left top, 1050px top;
background-repeat: repeat-y, no-repeat;
color: #fff;
border-bottom: 1px solid #262626;
height: 220px;
padding: 0;
margin: auto;
text-shadow: 1px 1px 0px #262832;
-moz-border-bottom-left-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-moz-border-bottom-right-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}