wizzer
March 25, 2025, 12:57pm
1
I found this problem while working on the full stack certification project - Build a cat blog page: Step 13. I created an anchor element with href linking to a section with id=“about”. When I click on the link in the console, the whole webpage loads in the console, like a russian doll or something. It stops at only one level though. I thought someone might want to check that out. Thanks for all the great work.
ILM
March 25, 2025, 1:19pm
2
thank you for reporting, we have an issue open for this if you want to follow it:
opened 04:23PM - 12 Mar 25 UTC
help wanted
scope: curriculum
### Describe the Issue
Instructions for step 13 begin:
>Step 13
Now that you ha… ve added the about section, try clicking on the About link to see the page jump down to that section.
If I click the About link, it loads a slightly different version of the editor in the iframe. (see screenshot). If I hover the link it says it's: `https://www.freecodecamp.org/learn/full-stack-developer/workshop-blog-page/step-13#about`
This is the seed code I've made no changes for this step yet.
### Affected Page
https://www.freecodecamp.org/learn/full-stack-developer/workshop-blog-page/step-13
### Your code
```
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mr. Whiskers' Blog</title>
<meta charset="UTF-8" />
</head>
<body>
<header>
<h1>Welcome to Mr. Whiskers' Blog Page!</h1>
<figure>
<img
src="https://cdn.freecodecamp.org/curriculum/css-photo-gallery/1.jpg"
alt="a cat peacefully sleeping"
/>
<figcaption>Mr. Whiskers Sleeping</figcaption>
</figure>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#posts">Posts</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About</h2>
<p>
Hi there! I'm Jane Doe, a passionate writer who finds endless inspiration in the antics of my beloved cat, Mr. Whiskers.
</p>
<p>
His playful nature and boundless energy keeps me on my toes. I love him so much.
</p>
</section>
</main>
</body>
</html>
```
### Expected behavior
Page to move down to the #about section id
### Screenshots

### System
- Device: PC
- OS: Windows 11 64-bit
- Browser: Firefox 136
- Version: 136
### Additional context
VPN