Moving layer during editing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 26 layers going, and during my editing at times when I move one layer
to another area it will move another layer or more. How do I stop it? Do I
have then linked some how?

Thanks in advance
Doug
 
You may have a style sheet attached the divs.
You can also have nested layers.

This is nested:

<div style="position: absolute; width: 100px; height: 100px; z-index: 1;
left: 301px; top: 96px" id="layer2">
<div style="position: absolute; width: 100px; height: 100px; z-index: 1;
left: 186px; top: 72px" id="layer3">
</div>
</div>

This is not nested:

<div style="position: absolute; width: 100px; height: 100px; z-index: 1;
left: 564px; top: 79px" id="layer1">
</div>
<div style="position: absolute; width: 100px; height: 100px; z-index: 1;
left: 271px; top: 140px" id="layer2">
</div>

Hope that helps.
 
Back
Top