Title: Header image
Last modified: August 24, 2016

---

# Header image

 *  [barbussi](https://wordpress.org/support/users/barbussi/)
 * (@barbussi)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/)
 * Hi,
    I have recently updated the theme, but now the header image has these opaque
   extensions on the sides and I don’t know how to disable them. Can i remove them?
   if so, how?

Viewing 15 replies - 1 through 15 (of 29 total)

1 [2](https://wordpress.org/support/topic/header-image-148/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/header-image-148/page/2/?output_format=md)

 *  [DhruvKanojia](https://wordpress.org/support/users/dhruvkanojia/)
 * (@dhruvkanojia)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029353)
 * screenshots or the website link would be better…
 *  Thread Starter [barbussi](https://wordpress.org/support/users/barbussi/)
 * (@barbussi)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029426)
 * Sorry, I forgot the link:
    [http://www.sullacimadelbonsai.it](http://www.sullacimadelbonsai.it)
 *  [DhruvKanojia](https://wordpress.org/support/users/dhruvkanojia/)
 * (@dhruvkanojia)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029547)
 * Ahh.. I saw your website’s code just now… and I found two elements..
 * <div class=”flex-left-opacity”></div>
    <div class=”flex-right-opacity”></div>
 * Try removing these!!
 * These are in your “Flex Slider’s” section. So, look in it. That should solve 
   it ^_^
 *  Thread Starter [barbussi](https://wordpress.org/support/users/barbussi/)
 * (@barbussi)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029565)
 * Thank you for the reply,
    I tried to do what you suggested, but the extensions
   of the header image are still there, even if now they’re not opaque. I would 
   like to have no extensions on the sides of the image at all… Do you know how 
   can I do it?
 *  [DhruvKanojia](https://wordpress.org/support/users/dhruvkanojia/)
 * (@dhruvkanojia)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029576)
 * Hmm…then… try to limit the HEADER SIZE…
 * I hope you are familiar with CHILD THEME and using it.
 * Put this in your child theme’s function.php or if you are not using child theme,
   then put this in you functions.php of your theme (or whatever php file is handling
   your website’s funtions..)
 *     ```
       add_theme_support( 'custom-header', array(
       'header_image'    => '',
       'header-selector' => '.site-title a',
       'header-text'     => false,
       'height'          => 98,
       'width'           => 1260,
       ) );
       ```
   
 * Change the width and height accordingly. your Header image is “1200X400”. So,
   put this :-
 *     ```
       add_theme_support( 'custom-header', array(
       'header_image'    => '',
       'header-selector' => '.site-title a',
       'header-text'     => false,
       'height'          => 400,
       'width'           => 1200,
       ) );
       ```
   
 * Let me know if you succeed. I am currently doing the same on my website, although
   yours and mine conditions are different. But, this should work out!
 *  [DhruvKanojia](https://wordpress.org/support/users/dhruvkanojia/)
 * (@dhruvkanojia)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029577)
 * well.. sorry… the code I gave you is for theme “twenty fourteen”.
    You’re gonna
   have to change the HEADER call yourself. In 2014 theme… the theme calls header
   like that, so, look in your website..how your calls it
 *  Thread Starter [barbussi](https://wordpress.org/support/users/barbussi/)
 * (@barbussi)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029580)
 * Thank you again,
    I don’t know where in the function.php I have to paste the 
   code that you gave me. (I don’t use child theme)
 * This is my function.php:
    [https://www.dropbox.com/s/v54594aeu3ipe84/functions.php?dl=0](https://www.dropbox.com/s/v54594aeu3ipe84/functions.php?dl=0)
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029619)
 * Please repost that last one to a pastebin – that’s too much code to post here:
 * [http://codex.wordpress.org/Forum_Welcome#Posting_Large_Excerpt_of_Code](http://codex.wordpress.org/Forum_Welcome#Posting_Large_Excerpt_of_Code)
 * And BTW, if you are modifying theme files, all of your changes will be lost when
   the theme is updated – which is why you should be using a child theme –
 * [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 *  Thread Starter [barbussi](https://wordpress.org/support/users/barbussi/)
 * (@barbussi)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029621)
 * Sorry, I am a noob indeed.
    This is the link: [http://pastebin.com/EJZyZ4DL](http://pastebin.com/EJZyZ4DL)
   And I will create a child-theme, promise!
 *  [DhruvKanojia](https://wordpress.org/support/users/dhruvkanojia/)
 * (@dhruvkanojia)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029622)
 * [@barbussi](https://wordpress.org/support/users/barbussi/)… create a child theme
   first…I’ll PM u the steps… will take only a minute… okay.?
 * EDIT:- No PM Option here.. anyway… read and follow here.. :-
 * To start a child theme, create a new theme folder (eg. “folo-child”) under the“
   wp-content/themes” folder. Create 2 files in the child theme folder and name 
   it style.css and functions.php
 * Now follow the instructions here please :- [http://pastebin.com/j1v2phW1](http://pastebin.com/j1v2phW1)
 * after that… this :-
 * go to your admin panel>>appearance>>theme–> use your FOLO-CHILD theme.
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029623)
 * **[@dhruvkanojia](https://wordpress.org/support/users/dhruvkanojia/)** – please
   keep help on these forums as per:
 * [http://codex.wordpress.org/Forum_Welcome#Helping_Out](http://codex.wordpress.org/Forum_Welcome#Helping_Out)
 *  [DhruvKanojia](https://wordpress.org/support/users/dhruvkanojia/)
 * (@dhruvkanojia)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029624)
 * [@wpyogi](https://wordpress.org/support/users/wpyogi/) … I’ll try to help wherever
   I can ^_^
 * ohh.. and even I need some help lol.
 *  Thread Starter [barbussi](https://wordpress.org/support/users/barbussi/)
 * (@barbussi)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029626)
 * I’ve created the child-theme, I’m using it.
    Thanks, I’ve learned something new.
 *  [DhruvKanojia](https://wordpress.org/support/users/dhruvkanojia/)
 * (@dhruvkanojia)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029628)
 * now.. paste the code I gave you in you functions.php..
 * put it at the end in your child theme’s function.php (not in parent theme’s folder)..
 * I’ll quote my comment again :-
 * > Put this in your child theme’s function.php or if you are not using child theme,
   > then put this in you functions.php of your theme (or whatever php file is handling
   > your website’s funtions..)
   >     ```
   >     add_theme_support( 'custom-header', array(
   >     'header_image'    => '',
   >     'header-selector' => '.site-title a',
   >     'header-text'     => false,
   >     'height'          => 98,
   >     'width'           => 1260,
   >     ) );
   >     ```
   > 
   > Change the width and height accordingly. your Header image is “1200X400”. So,
   > put this :-
   >     ```
   >     add_theme_support( 'custom-header', array(
   >     'header_image'    => '',
   >     'header-selector' => '.site-title a',
   >     'header-text'     => false,
   >     'height'          => 400,
   >     'width'           => 1200,
   >     ) );
   >     ```
   > 
 *  [DhruvKanojia](https://wordpress.org/support/users/dhruvkanojia/)
 * (@dhruvkanojia)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/header-image-148/#post-6029629)
 * did u just change your website’s layout.? lol.. I can’t seem to see your header
   image now 😛

Viewing 15 replies - 1 through 15 (of 29 total)

1 [2](https://wordpress.org/support/topic/header-image-148/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/header-image-148/page/2/?output_format=md)

The topic ‘Header image’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/blanc/2.0.4/screenshot.png)
 * Blanc
 * [Support Threads](https://wordpress.org/support/theme/blanc/)
 * [Active Topics](https://wordpress.org/support/theme/blanc/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/blanc/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/blanc/reviews/)

## Tags

 * [header](https://wordpress.org/support/topic-tag/header/)
 * [image](https://wordpress.org/support/topic-tag/image/)
 * [opacity](https://wordpress.org/support/topic-tag/opacity/)

 * 29 replies
 * 3 participants
 * Last reply from: [barbussi](https://wordpress.org/support/users/barbussi/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/header-image-148/page/2/#post-6029663)
 * Status: not resolved