Title: Replace slider with a full width header image
Last modified: August 21, 2016

---

# Replace slider with a full width header image

 *  [SimonGiddings](https://wordpress.org/support/users/simongiddings/)
 * (@simongiddings)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/replace-slider-with-a-full-width-header-image/)
 * Hello,
 * Is it possible to replace the slider with a full width (or large width) header
   image ?
 * Best regards

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [Manu-PB](https://wordpress.org/support/users/manu-pb/)
 * (@manu-pb)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/replace-slider-with-a-full-width-header-image/#post-4800935)
 * Have you tried having just 1 image in a custom slider ?
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/replace-slider-with-a-full-width-header-image/#post-4800939)
 * Here’s the documentation [link](http://www.themesandco.com/customizr/#images)
 * Tick the Full Width Slider checkbox in Customiz’it!>Front Page
 *  Thread Starter [SimonGiddings](https://wordpress.org/support/users/simongiddings/)
 * (@simongiddings)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/replace-slider-with-a-full-width-header-image/#post-4800942)
 * If I have understood correctly, it is NOT possible to replace the slider with
   a single header image.
    I will have to create a slider with one image in it to
   produce this kind of display.
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/replace-slider-with-a-full-width-header-image/#post-4800945)
 * Ah, didn’t grasp the image bit, but it’s still the best solution.
 * Hide the controls using this [snippet](http://www.themesandco.com/snippet/hide-slider-controls/)
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/replace-slider-with-a-full-width-header-image/#post-4800949)
 * Of course is possible, and why you say replace?
    Don’t show the slider and put
   your image after the header with the hook… `__after_header` something like this(
   in your child theme functions.php):
 *     ```
       add_action('__after_header', 'my_after_header');
       function my_after_header(){
       // here you can do some check on the page you're displaying
       // for example if you want the custom html showing just in home page:
           if ( ! tc__f('__is_home') )
               return;
           $html = //something here, like the code to print the image ;
           echo $html;
       }
       ```
   
 * That’s it.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Replace slider with a full width header image’ is closed to new replies.

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

 * 5 replies
 * 4 participants
 * Last reply from: [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/replace-slider-with-a-full-width-header-image/#post-4800949)
 * Status: not resolved