I checked the code and can see that the sticky side buttons are being hidden by other elements with a higher z-index. This is created by the theme.
Here’s a screenshot showing the problem: http://nimb.ws/TskPW0
Everything is sitting inside a div class “wrapper”
In the css .wrapper has been given a z-index of 1000
Therefore, anything with a lower z-index will be hidden behind the content of the page
Hence why you cannot see your Sticky Side Buttons.
In your element inspector, change that z-index on .wrapper to something low, eg 1. You will see the Sticky Side Buttons.
Hope this helps explain the issue 🙂
hi
i use
div#ssb-container {
z-index: 2000 !important;
}
in custom css to avoid this problem
Yep that should do the trick 🙂