Hi Ryan,
Replace this custom code you have:
@media (min-width: 769px) {
.site-content {
display: flex;
}
.inside-right-sidebar {
height: 100%;
}
.inside-right-sidebar aside:last-child {
position: -webkit-sticky;
position: sticky;
top: 40px; /*Adjust position */
}
}
with this:
@media (min-width: 769px) {
.site-content {
display: flex;
}
.inside-right-sidebar {
position: -webkit-sticky;
position: sticky;
top: 40px;
/*Adjust position */
}
}
This should make your entire sidebar sticky.