[SNIPPET] Bottom Aligned Signature

Mixed forum with phpBB code snippets
Guides and styles

[SNIPPET] Bottom Aligned Signature

Post by Stoker »

Bottom Aligned Signature

If you like me is fan of bottom aligned signatures, her is how to do it with a single css add:

Code: Select all

.postbody .content {
	min-height:200px;
}

@media (max-width: 700px) {
	.postbody .content {
	min-height:0px;
	}
}
bottom_signature.png


Need a stylesheet for adding extra styling? No need to edit phpBB core!
You can use the Add CSS EXT
You do not have the required permissions to view the files attached to this post.
Last edited by Stoker on 19 Apr 2025, 09:57, edited 1 time in total.
Reason: -

Re: Bottom Aligned Signature

Post by Anișor »

Cool idea but you should add an exception for smaller screens. In responsive mode the posts will have the same height - more scrolling than needed.

Re: Bottom Aligned Signature

Post by Stoker »

Anișor wrote: 10 Jan 2025, 09:57 Cool idea but you should add an exception for smaller screens. In responsive mode the posts will have the same height - more scrolling than needed.
You're absolutely right :thumb:
I'll take a look later today.

I removed you from newly registered. Making registered default wasn't enough to get out of the topic approval thing :D

Re: Bottom Aligned Signature

Post by Stoker »

First post updated included responsive mode for mobile devices

[SNIPPET] Bottom Aligned Signature

Post by Holger »

I get a ton of "white space" between the posts. Should I reduce the "200px"? :shock:

[SNIPPET] Bottom Aligned Signature

Post by Stoker »

Yes, the 200px is dependant of how many custom profile fields you have in the mini profile in topics.
200px is what is best here. You can see it in my post above yours.

Set it to 120px or whatever suits your site best

[SNIPPET] Bottom Aligned Signature

Post by flumsi »

Hello everyone

So small, so fine, this must be a code snippet ;)

Thank you so much :thumb: 8-)