Make banner area shorter?

Home Forums WordPress Themes – Premium Circumference Make banner area shorter?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #15574
    Sandy Sailer
    Member

    How can I make the banner area shorter in size? I found this code, but I’m not sure this is where I need to edit it. Thank you.

    function circumference_custom_header_setup() {
    add_theme_support( ‘custom-header’, apply_filters( ‘circumference_custom_header_args’, array(
    ‘default-image’ => get_template_directory_uri() . ‘/images/banner-bg.jpg’,
    ‘random-default’ => false,
    ‘flex-width’ => true,
    ‘width’ => 2560,
    ‘flex-height’ => true,
    ‘height’ => 500,
    ‘uploads’ => true,
    ‘header-text’ => false,
    ‘admin-preview-callback’ => ‘circumference_admin_header_image’,
    ) ) );
    }
    add_action( ‘after_setup_theme’, ‘circumference_custom_header_setup’ );

    #15575
    Sushil Adhikari
    Moderator

    The CSS for this area is found in the style.css and looks like this:

    /* banner showcase area */
    #cir-banner {
    	min-height: 2.5em;
    	background-color:#7FAAB5;
    	background-position: center;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.