Profile Comments Edit

thunderup

Active member
Hi, I can't seem to find where in the templates to alter this..

On your User Profile, when viewing comments on your page it is currently laid out this way:

[avatar] (username) content of their post here

I want to make the content of their post on your profile to go BELOW their username, is this possible while keeping the avatar located to the left?

So it would be like this:
[avatar] (username)
...............content of their post here.
 
Hey Jake, see the attached image screenshot..
Any way we can fix this alignment (as seen in the top portion - Espar_igus) without losing the change you made previously? (as seen in the bottom portion jodeke)
Screen shot 2011-11-22 at 5.21.38 PM.webp
 
Add these two definitions together. That will fix that side effect:

Code:
.profileContent .username
{
	display: block;
}

.profileContent .deleted .username
{
	display: inline;
}
 
Add these two definitions together. That will fix that side effect:

Code:
.profileContent .username
{
display: block;
}
 
.profileContent .deleted .username
{
display: inline;
}

Very nice, how about for "likes"
When more than one person likes a profile comment it skips to multiple lines as well
 
Top Bottom