• Hey guys,

    I’m so frustrated, its not possible to change to logo image size in the header. I’m using the Portfolilo theme (http://www.philipp-seiffert.com/de/blog/Portfolilo-Kostenloses-Wordpress-Theme)
    the logo image is way to small but I can’t make it bigger even if I load a bigger image. I’ve read many threads before concerning this question but I coudn’t find any solution for me.
    There is no option like define(‘HEADER_IMAGE_WIDTH’, 900);
    define(‘HEADER_IMAGE_HEIGHT’, 160);
    in the functions.php,
    is someone able to help me?

Viewing 2 replies - 1 through 2 (of 2 total)
  • the logo image is formatted with:

    .logo a img {
      max-width: 280px;
      height: auto;
      margin-top: 1em;
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -ms-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
    }

    in style.css of the theme.
    possibly change the ‘max-width’ rule.

    also, the .logo div is situated in a width restricted div:

    .container .five.columns {
      width: 280px;
    }

    and styled with ‘overflow: hidden;’

    .logo {
      overflow: hidden;
    }

    so you will need to change various styles, and possibly even the css classes of the .logo containing div … all depending on the size of your image.

    (evaluated from the theme’s demo site, as you have missed to post a link to your own site)

    if this does not help, please try to contact the developer of the theme for support;

    this forum only fully supports themes from http://wordpress.org/themes/

    Thread Starter Marie_

    (@marie_)

    Thank you so much, alchymyth,

    unfortunately I coudn’t post my site cause its running locally on my pc at the moment. (Strato host has problems with wordpress logins).
    I will try it that way. I’ve already contacted the developer of this theme but he doesn’t answer. I guess the theme isn’t made for costum changes like that…think so..but I don’t knwo, I’m a newby. 😉

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change the header image size’ is closed to new replies.