sprintly / jquery.pageguide

22 stars 9 forks source link

bug: no add z-index #3

Open chen00jian opened 10 years ago

chen00jian commented 10 years ago

you must add in js/jquery.pageguide.js:

wrapper.css("z-index","999999999"); toggle.css("z-index","999999999"); message.css("z-index","999999999"); shadow.css("z-index","999999999");

OR modify css/pageguide.css

pageGuideWrapper #pageGuideMessage {

...... ........ /* z-index: 1001;*/ z-index: 999999999;

}

OR add #pageGuideWrapper div{z-index:99999999}

impressiver commented 10 years ago

That's a lot of nines.