I am attempting to create an image view that fully covers the window, without any margins. I have tried various solutions such as setting the body margin and padding to 0, but they do not seem to work.
body {
margin: 0px;
padding: 0px;
}
or
*, html {
margin:0;
padding:0;
}
or
.splash-page .main-wrap {
overflow:hidden;
}
or
body, html { margin:0; padding:0; }
Although these solutions did reduce the margin, there still remains a left margin on both the image and body text, visible in this example:
Thank you in advance for your assistance.