Hello all,
I have an issue with div positioning. I used to have a SWF inside my HTML that I would add after the last two divs:
<div id="content">
<div style="position: absolute; left: 10px;">
<div style="position: relative">
Something like that, it was working fine. Inside the last two divs was a SWF. Now I had to move the SWF out of this code because I am using the HTML code in the id "content" as a template, so I want the SWF to be outside of it. Unfortunately, I do not know if I can make the position of the SWF (into a div) relative to the div with id "content", although it appears before it.
Now it looks like there is a div with a SWF, and then:
<script type="text/html" id="template">
<div id="content">....</div>
</script>
I would still like my SWF to be positioned at the same place, relative to the content. Is there anyway I can please do that? I am currently using absolute to place it where I want to, but the div id content is not static, so I would need to still use the relative positioning as before.
I really appreciate your help,
Thank you,
Rudy