okay..i know it can be done..I've done it with iframes..but for some reason I can't do it with freakin' layers! How do you pin a layer's location no matter what the resolution or window size is!?!! ugh I feel dumb right now..
You can do this easily with CSS. In your style page the file which has the name style.css in most of our templates. Give your layer the property position:absolute; and the position with top and left. Which looks like this in code. Code: #pinbox{ position:absolute; top:200px; left:200px; } Make sure your layer has the same name which looks something like this: Code: <div id="pinbox">I want to pin this box</div>