My Tribute Page After So Many Years

After going through responsive web design curriculum numerous times due to on and off coding, I finally decided to do the tribute page challenge.
https://codepen.io/Trek182021/pen/WNRgRLY

I’m happy with how it came out, but I’m still having trouble with having different parts of the site stay where they are.

2 Likes

Welcome to the forums @Trek182021. Your page looks good. Some things to revisit;

  • Verify your email addr with codepen so we can see your page full view
  • Keep the test script when forking the pen (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>)
    • The test script, with all tests passing, should be included when you submit your projects.
    • Your page passes 9/10 user stories. Click the red button to see which test(s) are failing and text to help you correct the issue.
    • Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.
  • Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in the HTML editor. (No need to include the body tags). For anything you want to add to the <head> element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
  • Accessibility is about being accessible to all users. Review the giving meaningful text to links lesson. For a more thorough explanation read Web Accessibility in Mind.
    • timeline” is not accessible

In the future, for more eyes on when asking for feedback it would be better to post in the #project-feedback subforum

1 Like

Thank you!, I already fixed the failed test and I will move this to the right sub forum.

1 Like

I moved your tribute page to the project feedback section.

But you have an issue with some overlapping text.

If you remove the absolute positioning of the center class then that will fix the issue.

1 Like

When I removed the absolute positioning, it removed it from the center, I tried putting margin with a value of auto, but it only centered the element horizontally. How do I center it vertically?

To help you visualize how you have your elements coded add the following line to the universal reset; border: solid 1px red;

1 Like

but that also means you will have to move the rest of the content further down the page to get rid of the overlap issue.
You will will have to play around with the margin for the tribute page section.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.