• How to create a sticky sidebar in Sydney theme without using a plugin. I just want to make the last sidebar sticky.

Viewing 1 replies (of 1 total)
  • Hi @vickykumar021,

    To create a sticky widget in sidebar, you could use this simple CSS code to add into Additional CSS (located under Appearance menu > Customize).

    #block-2 {
        position: -webkit-sticky; /* Safari */
        position: sticky;
        top: 0;
        z-index: 2;
    }

    Replace #block-2 with your widget element ID.

Viewing 1 replies (of 1 total)
  • The topic ‘can’t create a sticky sidebar’ is closed to new replies.