I would like to replace the entire header area in an NSIS installer with a bitmap. I have set MUI-HEADERIMAGE-BITMAP and set all the subcaptions to " ", however on the install files page I see empty white boxes over top my bitmap where the text would normally be. Is there a way around this?

Cheers, Chris

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Why don't you post the relevant code from your installer?

Here's what I use:

!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP "Banner.bmp"
!define MUI_HEADERIMAGE_BITMAP_NOSTRETCH
!define MUI_HEADER_TRANSPARENT_TEXT
link|improve this answer
That did the trick! Thanks! – Chris Oct 9 '08 at 13:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.