Site logo

Archived topic

To make the social sticky side menu

7 replies · Started by Arnaud on September 16, 2022

Viewing posts 1–8 of 8

Hi Arnaud,

Try adding this CSS in Appearance > Customize > Additional CSS:

.gb-container.sticky-social-icons {
    z-index: 99999;
}

ok thx.

Can we use the fields 'Outer z-index' or/and 'Inner z-index' ?
leveraging native configuration.

Actually, you're right. Can you try setting the Z-index on the Outer z-index?

I see. Doing so overrides the sticky position setting as well. You can revert back to custom code.

You have this code:

.sticky-social-icons {
    position: fixed;
    left:0;
    top: 30%;
}

You can alter it to this instead of the previous code I provided:

.sticky-social-icons {
    position: fixed;
    left:0;
    top: 30%;
    z-index: 99999;
}

thx

You're welcome Arnaud!

This archived topic is closed to new replies.