So I need help with Capital's profile. It looks mostly ok, just how i wanted it to look... but one of the divs is not showing up correctly. There's a div that includes an animated floating image that should be showing up on the left side of the page, but I guess it's "stuck" inside the main content of the profile? It used to show up just fine, but now it's disappeared entirely. 9:
Here's some images & code snippets, if it helps? If not, feel free to snoop around the entirety of the code.
Images&Code
Link: Link to Capital's profile
Link: How it used to look/how I want it to look
Link: What happens when I reset the div left parameter to 0
the floating image code:
{
width 680px;
height: 700px;
position: absolute;
left: -700px;
top: 0px;
z-index: 256;
}
{ width: 645px; height: 500px; background-image: url('http://i.imgur.com/sioWEGd.png'); position: relative; -webkit-animation-name: float; -webkit-animation-duration: 4s; -webkit-animation-iteration-count: infinite; animation-name: float; animation-duration: 4s; animation-iteration-count: infinite; -webkit-transition-property: background; -webkit-transition-duration: 2s; transition-property: background; transition-duration: 2s; }
:hover { background-image: url('http://i.imgur.com/HB0wjEm.png'); background-repeat: no-repeat; -webkit-transition-property: background; -webkit-transition-duration: 2s; transition-property: background; transition-duration: 2s; }
Thanks so much in advance!