• I have created an additional CSS class (bottom-sticky) and assigned it to a group at the bottom of the post (the blue button).

    When in additional CSS:

    .bottom-sticky {
    position: sticky;
    bottom: 0px;
    z-index: 900;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    }

    For the position parameter, it states:
    Expected (static, relative, absolute, fixed) but found “sticky”.

    Why doesn’t the “sticky” parameter work in this case?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • @rubipn

    The sticky parameter should work all fine, however, it is currently not supported by all the browsers hence you are seeing that message. However, you can ignore it and save the changes and see if that helps.

    Thanks.

    Thread Starter AnonyMouse

    (@rubipn)

    Hello.

    The problem is that it doesn’t work even if I save it and have it live.

    @rubipn

    Did you check it on the latest version of Google Chrome after clearing the browser cache? And maybe there is alternative way to achieve it for your site. You can search on Stackoverflow for it and manage as needed.

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘CSS Position “Sticky”’ is closed to new replies.