Help: Sahifa Theme; How to have transparent header background?

Oh my. No responses
 
Please add these lines into Global CSS section under (Sahifa TiePanel >> Styling):
header#theme-header {
background: transparent;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;}
 
Yes a transparent logo would be nice looking. I am sort of tired of seeing all the white.
 
Please add these lines into Global CSS section under (Sahifa TiePanel >> Styling):
header#theme-header {
background: transparent;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;}
Thank you! I spent so much time researching for the solution and nothing
was working for this theme.
All is well. Even though the header background is transparent, it still shows dropshadow around the edges.
How do you remove dropshadow.
 
Ok finally got it after messing around with firebug.

If you want transparent header background with sahifa theme then use this code(paste it in global css):

header#theme-header {
background: transparent;
-moz-box-shadow: none;
-webkit-box-shadow: none;
border-radius: none;
border-top: none;
box-shadow: none;}

#wrapper.boxed #theme-header {
box-shadow: 0 0 0px #cacaca;
width: 1045px;
 
#header #menu_container {
background-color: rgba(255,255,255,.5);
padding: 0px 20px 10px;
 
Back
Top