Hi Want want the background for the header to be black using the dark-skin streched layout.
I have tried the below but have been unsuccessful
This just changes the background container, but I want it to stretch out:
#header .container{
background-color: black;
}
This does the same as above.
#header{
background-color: black;
}
I tried adding .container_wrap but it changes it for all .container_wrap elements on the page.
#header .container_wrap, .container{
background-color: black;
}
I want to change <div class="container_wrap" id="header"> to black. Any help














