I've encountered an issue getting my anchors to smooth-scroll to the target text. Despite trying jQuery solutions from various sources, nothing seems to work inexplicably.
Even ScrollSpy doesn't seem to do the trick. I'm currently working with this example of ScrollSpy SmoothScrolling courtesy of W3Schools.
Here's a glimpse at my markup:
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" href="tbd.css">
<link rel="stylesheet" type="text/css" href="css/hover-min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Poppins" rel="stylesheet">
</head>
<body class="pattern-svg-background">
...
... (Abbreviated for brevity) ...
...
<script src="js/tbdjs-main.js"></script>
</body>
</html>
I can't seem to figure out where things are going wrong in my implementation. Any insights or guidance would be greatly appreciated!