• Resolved Ann74

    (@ann74)


    Hello Kaira,

    first at all thanks for the theme.. I just installed it. and my logo must be bigger than the default logo-size-area in your theme. It has a sentence as part of the logo.. and now as it is showing it is not possible to understand what the sentence says.

    could you let me know how to re-size the logo-area so I can load a bigger logo.

    thanks
    Ann

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

    (@kaira)

    Hi Ann

    You’ll be able to do this editing the “functions.php” on line 60.

    add_theme_support('custom-header', array(
    'default-image' => '',
    	'width'         => 290,
    	'height'        => 110,
    	'flex-width' => false,
    	'flex-height' => false,
    	'header-text' => false,
    ));

    and change it to be:

    add_theme_support('custom-header', array(
    'default-image' => '',
    	'width'         => 290,
    	'height'        => 110,
    	'flex-width' => true,
    	'flex-height' => true,
    	'header-text' => false,
    ));

    This will allow you to have a flexible width and height.

    Please try that and let me know if it works.

    Thanks

    Thread Starter Ann74

    (@ann74)

    Thanks,
    It works… I must split the message from the logo/graphic.

    For others who asked where to change the code… It is under the folder: theme/albar/functions.php.

    Thanks
    Ann

    Theme Author Kaira

    (@kaira)

    Awesome, glad you got it sorted.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘re-sizing logo-area’ is closed to new replies.