My tech doc page

Not completely finished yet but I think the design is mostly done. Do you all see anything wrong with it? What’s wrong or how could it be better?

I took the scrollToTop script/css from w3schools but besides that it’s all mine.

editor: https://codepen.io/RutherfordTheBrave/pen/wvzBNBj

full: https://codepen.io/RutherfordTheBrave/full/wvzBNBj

2 Likes

Hey @Rutherford!

Your page looks good.

1 Like

Navigation bar should have a fixed position it should not scroll with the rest of the page else we have to scroll back to the top to click on any other link again and again. Other than that it looks good.

2 Likes

I don’t know if I can make my current flexbox layout work with a fixed nav. I’ll try to figure it out. Thanks for the input.

Hey @Rutherford,

I added an “overflow:scroll” to the main section to fix the nav issue on my page.

Hope this helps!

https://codepen.io/forthehnh/pen/wvzGNbq?editors=1100

1 Like

I added these three lines to #navbar {} and it seems to work.

position: sticky;
top: 0;
height: 100vh;
1 Like

Good work! keep going!