Also, if you want to cross out the username to show that the user who wrote that post has been deleted, I'm about to show you the solution.
I have prepared a CSS code that does this for you. Using this code, you can strike through the username in the posts of users who no longer exist.
Code: Select all
.post .postprofile span.username {
text-decoration: line-through;
opacity: .85;
}
It does this: username
That's it. Any questions or other ideas?