Hi there,
I am creating a landing page with a video in the background. So far so good.
I have a color section with a video background and I have removed footer, header and sidebar so the entire page is the video. In the color section I have a portfolio grid and it works fine. The thing is, that I would like to have the portfolio grid to stick to the bottom of the page in order to get maximum effect from the video. Is there a way to do that without destroying the layout for portfolio grids on other pages?
Best regards,
Niklas
Hey nkarkine!
Add this to a codeblock element in the page.
<style type = "text/css">
.av_one_full {
position: absolute !important;
bottom: 0px !important;
}
</style>
Regards,
Elliott
Thanks – works great in desktop. Now I will figure out a way to have it look good in mobiles too. Thanks for the help!
Hi!
Use this CSS if you only want it to happen on large screens.
<style type = "text/css">
@media screen and (min-width: 767px) {
.av_one_full {
position: absolute !important;
bottom: 0px !important;
}
}
</style>
Regards,
Elliott
Perfect, thank you!