I'm trying to position an image on the side of the screen that only shows up on large widescreen monitors. Currently, I have this tag in place which positions it perfectly:
<img src="image.png" style="position: absolute; left: 1400px;">
It's exactly where I want it, but the issue is that it affects the scroll bars, allowing users on smaller screens to scroll over and see it. My goal is for the image to be placed on top of the background and only visible to those with very wide monitors.
Edit: The screen consists of three images - a tiled wood background image, a map.png that is 1200px wide, and a coffeecup.png image that should be positioned next to the map and only shown on large screens.