Hi.
Here for Contact Form addon that you published.
/*This is common part for all options, that makes sticky position to work in general */
.body-innerwrapper {
overflow-x: visible;
}
/* */
/* Part for addon */
.sticky-sidebar .sppb-col-md-4 .addon-root-ajax-contact {
position: sticky;
top: 90px;
}
Or a more universal code for any last addon located in the column.
/*This is common part for all options, that makes sticky position to work in general */
.body-innerwrapper {
overflow-x: visible;
}
/* */
/* Part for addon */
.sticky-sidebar .sppb-col-md-4 .sppb-addon-wrapper:last-child {
position: sticky;
top: 90px;
}