[Resolved] Position element at bottom of page header

Home Forums Support [Resolved] Position element at bottom of page header

Home Forums Support Position element at bottom of page header

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #439771
    Jamal

    Hi Tom

    Would like your help in positioning a div at the bottom of the page header. Right now i have this inside page header and i would like it to appear like this at the bottom https://imgur.com/a/4sHPG. Right now whatever i do the columns are not sitting right.

    #439872
    Tom
    Lead Developer
    Lead Developer

    You can use absolute positioning:

    <div class="my-absolute-wrapper">
        Stuff inside of it
    </div>

    Then your CSS:

    .my-absolute-wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    #440097
    Jamal

    Awesome ! Thanks a lot.

    #440163
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.