Just finished my tribute page - feedback appreciated!

Here’s the link: http://codepen.io/jamesddavies/pen/yJqGaG

I’m just looking for any general feedback anyone may have - I’m aware of one issue, which is that the carousel images don’t scale properly in IE (due to the use of object-fit in the CSS). Still searching for a fix for this unfortunately! If anyone can help please let me know.

Thanks!

James

Undoubtedly, that is the most detailed tribute page I’ve seen. Well done! My approach to dealing with IE in personal projects is: don’t. You’ll spend hours on an edge case for a browser that ought to be no more than a memory, and the chances are good that no one will visit your page with it.

Thanks a lot! It’s been a right pain trying to find an IE solution, think I’ll take your approach for now! Here’s hoping they support object-fit soon.

Very nice page. The “smooth-scrolling” effect, was a nice touch.

I don’t know if you have the same issue as me, but for me there’s a horizontal scrollbar at the bottom. If you want to get rid of it

either remove line 52 on your CSS
width: 100vw;

or add

body {
  overflow-x: hidden;
}

I haven’t had that issue, thanks a lot though! Will get it fixed asap.