So like many people my pets profile has become messed up. - https://subeta.net/petinfo.php?petid=1443264 What seems to have happened is that everything apart from the background has ended up inside a small scrollable box. Now there was meant to be a box, but only the main pet picture and text was meant to be in there.
This was were the box was meant to be. Inside this picture which sits over the background. http://i45.tinypic.com/kd8zn9.png
Here is the code - https://pastebin.com/mgmnXV6q
Everything else seems to work still, except its inside this box lol.
Thank You for any help given
Thank you! That seems that have worked! ... What did you do to fix it?
You had a brace too many on 4, which I replaced with a semi-colon. Other than some cosmetic changes (like consolidating your display:none's), the only thing I did was add "overflow: visible" to the content div. It was the latter that fixed most of it, because by default if you set a height or width then scrollbars will be added. So adding "overflow: visible" removes the scrollbars and shows the overflowing content instead. Hope that made sense xD