Hi,
I am trying to expand on the themco theme.
I am using raw content element to insert html code into a page.
The html contains code to display its content in fullscreen mode, but I noticed there is a border/padding being displayed when viewed on mobile phones.
I then created a custom class to try and fix this.
.topLeft {
top: 0;
left: 0;
position: fixed;
height: 500px;
width: 100%;
}
While this does allow for full screen and the desired effect.
Any content I place on the page gets overlaid over the top of the raw content block.
Due to its fixed positioning, its stays in place, and the rest of the content gets overlaid when scrolling. It acts almost like a broken parallax image.
Is there a way for me to create the desired position of
top: 0;
left: 0;
To allow full screen without the padding effect. While still enabling the content to scroll up and down the page with the rest of the pages content?
I have tried the other content elements with no luck, as well as setting the page to no container, no header, no footer.