Running into a couple of simple problems with a project. Its meant to be a fun interactive portfolio. I’m not sure why, but this design is not mobile responsive. Am I doing something wrong? What should I change? Also running into a road block with the audio. Does anyone know why it isnt working?
I don’t know a lot about responsive css, so hopefully someone with more knowledge in that area will be able to help. If not we can see what we can come up with!
Hello @PatriciaMRobinson. Upon looking at your project, you seem to be using fixed and absolute positioning, which is not responsive CSS compatible. However, you might wish to start with all your divs at the same top and left starting point, say top:20px and left:20px, and implement document.onload and window.onresize handlers which compute and assign absolute positions based upon window.innerWidth and window.innerHeight. These handlers could be one and the same function.