Yes. It's a known IE problem.
If you copy this and paste it into the head region of the page (immediately
above </head> would be a safe place) then you will be able to click and drag
to copy -
<script type="text/javascript">
if (window.createPopup && document.compatMode &&
document.compatMode=="CSS1Compat")
{
document.onreadystatechange = onresize = function fixIE6AbsPos()
{
if (!document.body) return;
if (document.body.style.margin != "0px") document.body.style.margin = 0;
onresize = null;
document.body.style.height = 0;
setTimeout(function(){ document.body.style.height =
document.documentElement.scrollHeight+'px'; }, 1);
setTimeout(function(){ onresize = fixIE6AbsPos; }, 100);
}
}
</script>
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"jip" <webforumsuser (AT) macromedia (DOT) com> wrote
Quote:
I have discovered a strange issue with the DW 2004 Halo Left Nav CSS
Template.
When I preview the page in a browser, IE6 for example, and then I try to
click
and drag on text to select, the entire page will get selected. Has anyone
else
noticed this and if so what is the solution? |