I've got an idea for a pet profile involving the minion, but the text surrounding it is going to look unsightly. I want the minion to be constantly visible, but the text to be hidden unless hovered over. Is there any way to do this?
yes, you can use this code:
{visibility:hidden}
img {visibility:visible!important}
:hover {visibility:visible}
That works great, thanks! :D
I plan to make an overlay for the minion, which will be larger than the original minion image. I've done minion overlays before, but I wanted to make sure that'll work okay with this? Will I need to adjust the code to make sure it works with my image?
i don't think so, just use the minion overlay code as you usually do. if you haven't done bigger minion overlays, though, you have to make sure the height is correctly indicated, like if for example the image is 90x90 px:
img {height:0px; width:90px; padding-bottom:90px; padding-top:0px; background:url(URL) left top no-repeat}
and the text will automatically move to accommodate the new image.