Not seeing the square links with javascript disabled

Your players are built with layers of positioned elements. Without the js setting the classes that control those layers you will get the stacked layers your seeing.

That’s why real web pages are not built with absolute positioning which is removed from the flow. They are built with blocks that stack in the normal flow of the document. That way everything works with js or css off.

3 Likes