Making bg heroImg responsive
Hey guys,
I'm trying to get my hero image for my landing page to be responsive. But it just refuses to stretch to my desktop monitor size.
Link - global.curvature.com/01---APAC-2017-Email-Reports_test.html
.section-background-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.section-background-image img {
position: absolute;
min-width: 100%;
max-width: none;
min-height: 100%;
top: 0;
left: 0;
Even when i change to position: relative;, it doesn't work.
Thanks in advance!