So I'm fixing up Somewhere's profile and I want to get rid of the empty space above the minion. It's where the "pet has a minion!" text would normally be. I want the minion centered in the border without making it larger than it needs to be were the minion centered
So here's the code that hides the text to begin with
{text-indent: -9999px}
Is this possible to do?
if I understood correctly, you want to move the remain elements up so it looks more center? If so add the following code
img {
margin-top: -30px;
}