Archived topic
Position element at bottom of page header
3 replies · Started by Jamal on December 1, 2017
Viewing posts 1–4 of 4
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.
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;
}
Awesome ! Thanks a lot.
You're welcome :)
This archived topic is closed to new replies.