Today i am going to teach you How to Customize Sahifa WordPress Theme Header Custom image or transparent where logo is displayed, the part above main navigation menu in Sahifa WordPress theme provided by TieLabs, by default Sahifa Theme header is White. Unfortunately Tie Labs not added an option to change Background Image, only we can use full width logo instead of.

Here is way how you can change Sahifa WordPress Theme, just follow the following

Please add following CSS Code into Global CSS section under

>> Sahifa TiePanel

>> Styling

Add Background Custom Image

/*———–HEADER IMAGE—-CODED BY DYNAMIKSKILLS.COM——–*/

header#theme-header {
background: url(Replace with you Image url);
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;}

 

Transparent Background

If you want to make Header Background Totally transparent then use following code

/*———–HEADER Transparent—-CODED BY DYNAMIKSKILLS.COM——–*/

header#theme-header {
background: Transparent;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;}

Watch Video