Suggestions Thread

Threads that no longer serve a purpose. Read-only.
Food
Core Lord
360 | 32
Great Popularity Badge
Has a thread with over 50.000 views
Common Love Badge
Earned over 20 cookies
Great Patron Badge
Patreon Contributor
Common Contribution Badge
Has collaborated to our forums, realms or mod
Wouldn't making div.signature the second child of div.postbody (and thus a sibling of div#post_contentXXXXX) let you position it at the bottom? I don't *think* (but I may be horribly wrong on this) that modifying the html structure this way would be particularly hard or break anything.
User avatar
Marco
Team Member
1952 | 1349
Common Posting Badge
Posted over 1.000 messages
Legendary Popularity Badge
Has a thread with over 250.000 views
Legendary Love Badge
Earned over 500 cookies
Common Supporter Badge
Donated 1 time
Common Multiplayer Badge
Has won a multiplayer contest
Legendary Contribution Badge
Median XL Team Member
Common Auction Badge
Won 50 auctions
^ that would add extra height to all posts with a signature, as it wouldn't be displayed inline with the user profile. And that's an actual drawback, unlike the way it currently is now (looks ugly but is efficient in terms of space).

edit: well that doesn't answer your question (but it answers the question I expected your post to be). Now, for your suggestion, you would still need a way to "push it to the bottom", which as far as I know doesn't exist.
Food
Core Lord
360 | 32
Great Popularity Badge
Has a thread with over 50.000 views
Common Love Badge
Earned over 20 cookies
Great Patron Badge
Patreon Contributor
Common Contribution Badge
Has collaborated to our forums, realms or mod
Well at that point you could try

Code: Select all

div.signature {
    bottom: 5px; /* or whatever */
    position: absolute;
}


Or at least I think it should work, but I feel position: absolute will break some stuff.

MDN wrote:For absolutely positioned elements, that is, those whose position property is set to absolute or fixed, the bottom property specifies the distance between the bottom margin edge of the element and the bottom edge of the block containing the element.
User avatar
Marco
Team Member
1952 | 1349
Common Posting Badge
Posted over 1.000 messages
Legendary Popularity Badge
Has a thread with over 250.000 views
Legendary Love Badge
Earned over 500 cookies
Common Supporter Badge
Donated 1 time
Common Multiplayer Badge
Has won a multiplayer contest
Legendary Contribution Badge
Median XL Team Member
Common Auction Badge
Won 50 auctions
It won't work, you would need postbody height to be 100%, and that's not possible for floating elements.

And in an hypoteticall scenario where you could set this height, absolute elements are put on top of other elements. So if you had a post where postbody height is larger than postprofile, then the signature would display on top of postbody text (unless you reserve some space, which is not possible to do dynamically do based on signature's height)
Food
Core Lord
360 | 32
Great Popularity Badge
Has a thread with over 50.000 views
Common Love Badge
Earned over 20 cookies
Great Patron Badge
Patreon Contributor
Common Contribution Badge
Has collaborated to our forums, realms or mod
Tried fiddling with it and see if I could make it work. As you said, even moving the signature around still makes it impossible to achieve unless at least the height of the signature is known. Then it may be possible (or I may be wrong, quite tired right now).

Sometimes css sucks and there's no way around it I guess.
User avatar
Quirinus
Team Member
1510 | 184
Common Posting Badge
Posted over 1.000 messages
Legendary Popularity Badge
Has a thread with over 250.000 views
Great Love Badge
Earned over 100 cookies
Common Supporter Badge
Donated 1 time
Legendary Contribution Badge
Median XL Team Member
yeah... luckily they're improving it constantly, and I even think the not yet released css version/changes contain what you want, if I remember correctly from what I skimmed.

I can remember the css from like 10+ years ago... dear god, what we have today is godly compared to back then... just the number and complexity of the selectors makes things much more easier, not to mention the rest.

anyways, I'm offtopic. xD
"but if it's simple it's not that hard" - Quirinus 2017
"small things like this are not a big deal" - Quirinus 2017
User avatar
Asteroth
Azure Drake
169 | 4
Legendary Popularity Badge
Has a thread with over 250.000 views
I'm not sure if it has been mentioned but:
Is it possible to move the "report post" button (right between the "edit" and "quote" buttons) to another part of a post?

I keep accidentally clicking "report" instead of quote. Obviously this is my own problem, but as a quality of life thing, it might make more sense to move the "report" button to like...bottom right corner?
User avatar
Rishab
Polar Worm
1874 | 156
Common Posting Badge
Posted over 1.000 messages
Great Popularity Badge
Has a thread with over 50.000 views
Great Love Badge
Earned over 100 cookies
Legendary Contribution Badge
Median XL Team Member
Planned feature thread no longer exist :|
Food
Core Lord
360 | 32
Great Popularity Badge
Has a thread with over 50.000 views
Common Love Badge
Earned over 20 cookies
Great Patron Badge
Patreon Contributor
Common Contribution Badge
Has collaborated to our forums, realms or mod
If you feel this is a silly or "not worth the effort" kinda thing that's ok, but I feel a way to write posts laid out in two columns would be great for guides and such things.
User avatar
iwansquall
Gore Crawler
1523 | 71
Common Posting Badge
Posted over 1.000 messages
Legendary Popularity Badge
Has a thread with over 250.000 views
Common Love Badge
Earned over 20 cookies
Common Supporter Badge
Donated 1 time
Probably need table formatting then.

Tried to copy my old guide, table code doesnt exist / not same as old one.