So I've been trying to get this figured out today, but I'm still a bit confused on how to achieve the desired look for my game. I've seen templates that altered the positions and such, but I'm not quite understanding them so that makes this a pain for me atm. I've included an attachment of what I'm aiming for so hopefully someone can help me get some progress going here again
Thanks in advance!
Comments
I don't know how much CSS experience you have, but here's the basics. The rest of what you want would largely be tweaking. I will say, however, that keeping it evenly vertically aligned like I think you want is going to be pretty tricky. There's a few ways to do that with HTML, but I might actually rely on jQuery in your case.
That said, if you can live with not all the elements being EXACTLY 33% high on all screens, this is what I'd do:
The problem is that there is almost an unlimited number of different screen resolutions (if you are targeting both desktop (inc laptops) and mobile devices) and if you don't scale an image in a way so that it keeps it's aspect ratio (height to width) then the image will look bad.
My suggestion would be to size the image file to a size that makes sense and then to down scale it for smaller resolutions, though someone more experienced with images and CSS may have a better solution.
So all that said, thanks for the help!