I'm using ScrollTo.
It is not scrolling to div having margin, margin-left: -1160px; or margin-top: -600px;
I have following div
<div id="home" class="content">
<h1>I'ts home</h1>
</div>
<div id="about" class="content" style="margin-left:-1160px;">
<h1>I'ts about</h1>
</div>
<div id="contact" class="content" style="margin-left:600px;">
<h1>I'ts Contact</h1>
</div>
<div id="services" class="content" style="margin-top:-600px;">
<h1>I'ts Contact</h1>
</div>
I want to display home div by default.
All div 100% height and width.