Reputation: 3751
Works with the proper animation with partial CSS: http://jsfiddle.net/njxdx6w8/
With my entire CSS, the animation does not work: http://jsfiddle.net/njxdx6w8/2/
HTML:
<div class="section group brClear">
<div class="col span_2_of_3 vertAlignT span_pad_left">
<div class="serviceHolder" style="height: 20px;"><a target="_blank" href="letter.pdf" title="Winter 2013" class="setBold defaultLinks">Winter 2013 Newsletter</a></div>
<div class="serviceHolder">STUFF GOES HERE</div>
<div class="serviceHolder"><a title="Download Newsletter" href="letter.pdf" class="btn btn-1 btn-1e">Download</a><a title="Open Newsletter" target="_blank" href="letter.pdf" class="btn btn-1 btn-1e">Open</a></div>
</div>
</div>
I used the developer tools for both Chrome and IE and can't seem to figure out which of my style is causing the issue.
Please help me resolve it.
Upvotes: 0
Views: 32
Reputation: 26
in your html, body{} css take out background: #FFF no-repeat center center fixed;
Upvotes: 1
Reputation: 539
White background
property in the body tag couses the problem. Move your background property to a seperate html
tag.
html { background: #FFF no-repeat center center fixed;}
Upvotes: 1