Which theme are you using?
It’s UNCODE in the latest version.
http://www.undsgn.com/uncode/
I do not even see a tab. Please try updating WP-Flybox to version 6.31 and if that does not solve it, then please go to WP-Flybox Other Options and turn the debugger on and let me know The debugger just puts all the values of each setting hidden in the head section of your page source for me to look at. thanks!
I get the same result with the version 6.31 so I turned the debugger in the settings on.
The URL of the site is http://www.joovels.de.
OK. You can turn the debugger back off. I see the problem. I can see the tab, but it does not fly out. The reason is that there is a menu-container div that turns white when you scroll down. This has an absolute position and z-index is ignored. Since the menu-container was rendered first and takes up the same space as the wp-flybox tab, it will show on top. When you hover on the tab now, it is actually hovering on the menu-container. The easiest solution would be to go to WP-Flybox Display Settings and change the How high to start first tab setting to a value greater than 86 (which is the height of the menu-container). Let me know if this solves it.
Thanks for your feedback, sounds logical. Probably the programmers of the theme made some changes because it worked well till now.
Too bad – to start below the invisible menu-container is from a design point of view not really an option. But thank you anyway for your support!
With the support of the UNCODE guys, I get it up running with following CSS code:
.wp-flybox_tab {
z-index: 2000 !important;
}
I am not familiar with the !important declaration and its disadvantages but in this way the z-index is no longer ignored.
OK great! I will add the !important to the plugins css