Hi Sundry,
Your current CSS is targeting the last widget in your sidebar to be sticky.
@media (min-width: 769px)
.inside-right-sidebar aside:last-child {
position: -webkit-stcky;
position: sticky;
top: 10px;
}
}
If you’d like the entire sidebar to be sticky, try this CSS instead:
@media (min-width: 769px)
.inside-right-sidebar {
position: -webkit-stcky;
position: sticky;
top: 10px;
}
}
and remove this CSS:
@media (min-width: 769px)
.inside-right-sidebar {
height: 100%;
}
}