Is there any way I can use PHP or dhtml to get the height and width of a layer into two seperate variables? maybe somewhat something like the image size variable queries
What do you mean by a layer into two separate variables? you can set like: <? $width = "15%"; $height = "15%";
echo "<img src=... width=\"$width\" height=\"$height\">"; ?>
hope this helps ... 🙂