Pop up box with absolute positioning
-
So, I kept scratching my head for half an hour wondering why the button I had placed in my footer widget didn’t bring up the Skype pop-up box (#skypeCheckNotice) when the same button in the main content worked.
Then I realized: I just needed to scroll up… The box is positioned absolutely with the top and left values calculated dynamically according to screen size, which means if you are at the bottom of a page with a lot of content, you will never even see the box.
I had to place this in my theme’s CSS:#skypeCheckNotice { position: fixed!important; }
Now it works. Code should be fixed in the plugin, absolute positioning simply won’t work in every case.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Pop up box with absolute positioning’ is closed to new replies.