• I’d like to put in a Header image that is a PNG with transparency, but the background always renders as white by default. Is there a way to remove the white block in the Header area?

    I do know that WordPress is seeing the transparency correctly in general. I put an HTML text widget above the Header and then inserted code for the PNG image which showed up correctly with transparency.

Viewing 1 replies (of 1 total)
  • Theme Author Frumph

    (@frumph)

    use CSS

    header {
        background: url('/path/to/image.jpg') top center no repeat;
        height: 100px;
        width: 980px;
    }

    instead of the appearance -> header section, will allow transparent images

Viewing 1 replies (of 1 total)
  • The topic ‘PNG image with transparency in Header’ is closed to new replies.