Archived topic
Table of Contents on Right Sidebar not smooth scrolling
3 replies · Started by Hubert on March 17, 2023
I have moved my Table of Contents from in-content to the right sidebar in a widget. I have disabled my caching plug-in and have Smooth scroll checked in the Customizer - General settings. I also have added the PHP code from another forum reply to my functions.php files in my child theme. I have Smooth Scroll enabled in my Table of Contents Settings.
The Table of Contents isn't scrolling with the page. Am I missing a step? Any idea what I'm doing wrong?
See the example at https://homeinspectioninsider.com/walk-away-after-a-home-inspection/
Hi there,
is that plugin meant to make it sticky ?
If it doesn't then use some CSS:
@media(min-width: 769px) {
.inside-right-sidebar {
position: sticky;
top: 20px;
}
}
Not sure what plugin you are referring to but adding the CSS worked. Thank you.
Glad to hear that !