My website has a background defined in CSS as follows:
body{
background-image:url(BackgroundImage.jpg);
background-size: 100%;
background-repeat: no-repeat;
I also have several other images positioned on top of the background, like this example:
#Logo{
position: absolute;
top:92px;
left:95px;
}
However, I need the logo image to scale according to the background image.
Essentially, I want to instruct the logo image that its current size is equal to 100% and should adjust accordingly whenever the window is resized.
Thank you in advance for any help!