Position tagline in bottom left corner
-
Hey,
Wondering if there is a way to position my tagline in the bottom left corner of the nav. I've tried some rudimentary CSS to no avail, I know in Customize you can position it in relation to the top, but I would like to position it in relation to the bottom of the page.
I saw someone else's solution was to fix a paragraph with a super high z-index, but they didn't explain how they ended up making that work.
Whether or not it stays as the tagline or changes to a paragraph of text doesn't matter, I would just like it to stick to the bottom left corner.
Here's the website: https://fmagazine.info/
Thanks!
-
Dear @watersigils
I see that you have achieved this through margin-top:500px
If you are looking for a cleaner solution where the tagline will always remain fixed at the bottom left corner you can try:
.tagline { position: fixed; margin-top: 0; bottom: 15px; }Best wishes and Website looks great :)
Richard
-
Dear @watersigils
I see that you have achieved this through margin-top:500px
If you are looking for a cleaner solution where the tagline will always remain fixed at the bottom left corner you can try:
.tagline { position: fixed; margin-top: 0; bottom: 15px; }Best wishes and Website looks great :)
Richard
@Richard-K This worked perfectly! I knew it would be a simple fix, haha. Thanks so much.
-