• Hello,
    before i start my question please excuse my english i’m not a native speaker.
    My Questions are:
    1. What size (px) would you recomend for the Background pictures in the header on the diffent pages (not home page)?
    2. The header always crops my background pictures and only shows half of the image. Can i do something to prevent that?
    Thanks in advance for the help.
    Mona

Viewing 2 replies - 1 through 2 (of 2 total)
  • I don’t have access to the theme files right now, but believe you may be able to fix the cropping issue by editing the argument values for custom headers in functions.php. There is a codex page for custom headers if your interested.

    Specifically, look for something like this in functions.php:

    $defaults = array(
    	'default-image'          => '',
    	'width'                  => 0,
    	'height'                 => 0,
    	'flex-height'            => false,
    	'flex-width'             => false,
    	'uploads'                => true,
    	'random-default'         => false,
    	'header-text'            => true,
    	'default-text-color'     => '',
    	'wp-head-callback'       => '',
    	'admin-head-callback'    => '',
    	'admin-preview-callback' => '',
    );
    add_theme_support( 'custom-header', $defaults );

    You may want to set flex-width => true.

    Also, in case you don’t know, these changes should be made using a functions.php file in your child theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Background Picture’ is closed to new replies.