• Resolved eveber

    (@eveber)


    Hi, I am having trouble with z-index… here is my page link: https://eving.si/kosec. I have set it to max. 999999999999, but still it hides behind some objects and link isn’t working at all. Can you please help me with managing these settings for the plugin? Is there some kind of code bug with my WP template or something?
    Thank you… best regards, Eva

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Maeve Lander

    (@enigmaweb)

    I’ve checked your CSS using the Element Inspector and the sticky side button container appears to have a z-index of 1, with the slider having a z-index of 20. Hence why your button goes behind the slider.

    Can you confirm you saved the z-index setting in the sticky side button plugin settings screen?

    If that setting isn’t taking for some reason and quick solution would be to manually add this css to your theme stylesheet:

    #ssb-container {
        z-index: 99;
    }
    Thread Starter eveber

    (@eveber)

    I have checked again – z-index setting is 999… I am sending you print screen of these settings: https://imgur.com/a/Rg8Tp.

    I also added the code to my custom CSS for theme, and also no effect: https://imgur.com/a/T8JgA.

    Have you got any idea what’s causing the problem?
    Thanks.
    Eva

    Plugin Author Maeve Lander

    (@enigmaweb)

    Something in your theme appears to be overriding it. Let’s try forcing it with the !important attribute. Change the css to:

    #ssb-container {
        z-index: 99 !important;
    }
    Thread Starter eveber

    (@eveber)

    Still doesn’t do anything. So this is most likely to be a theme problem?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Z-index and link problems’ is closed to new replies.