Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #573251

    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

    #573417

    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

    #573566

    Thanks – works great in desktop. Now I will figure out a way to have it look good in mobiles too. Thanks for the help!

    #574277

    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

    #574367

    Perfect, thank you!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Portfolio grid positioned in bottom of page’ is closed to new replies.