Size of header for Sundance theme

  • Unknown's avatar

    Hello,

    My header image needs to display only 70px odd high, i have tried setting this with the CSS customization to no avail….any ideas?…Is this possible?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    The header size set in the Sundance theme design is 984 × 242 pixels by default. You can override that by uploading a header image pre-sized to your specifications into your media library and then using this CSS to change out the existing header image:

    .header-image-link img {
    display: none;
    }
    
    .header-image-link {
    background: url(YOUR_IMAGE_URL) no-repeat;
    display: block;
    width: 984px;
    height: 70px;
    margin-top: 0;
    }

    Replace YOUR_IMAGE_URL with the image link from your media library. Adjust the height value as necessary.

  • The topic ‘Size of header for Sundance theme’ is closed to new replies.