Currently working on developing a web application. The images in the app are sized using percentages, with three overlapping another image that functions as a toolbar. Everything looks great when viewed in fullscreen mode, but the problem arises when the screen size is reduced. Suddenly, the ratio of image size to screen seems to change. How can I fix this issue?
Original Full-size View:
Reduced Screen Version:
Take note of the disparity in icon sizes!
Snippet of my code:
<div id="bottombar" data-position="fixed">
<img id="ico" class="foodico" src="images/icons/Food1.png" width="3%">
<img id="ico" class="shopico" src="images/icons/Shop1.png" width="3%">
<img id="ico" class="activityico" src="images/icons/Activity1.png" width="3%">
<img id="Bbackground" src="images/icons/NavBarBackground.png" width="100%" height="7.8%">
</div>