Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Level9themes

    (@level9themes)

    Add this into your child theme function.php

    function my_setup(){
    $defaults =array(
    'width' => 1920,
    'height' => 1080,
    );
    
    add_theme_support('custom_header',$defaults);
    
    }
     add_action('after_setup_theme','my_setup');

    open mk.css

    paste code:

    .mk-header-image {
        position: absolute;
        width: 100%;
        height: 280px;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1;

    thanks pkulinich. it works!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Width of Header Image’ is closed to new replies.