Subject: menu + ie6 & comments + actinic = aghhhh
Hi, bit of an problem here and I know theres a way around somehow..(hopefully).
I have a multi column dropdown menu that uses css and conditional comments to support all browsers...the problem boy of the class being IE6 of course.
The menu and html works fine in a standard html page but when put into actinic, the program complains and messes it all up.
I found a similar post here:
http://community.actinic.com/showthread.php?t=37771
and a link about uncompressing here
http://community.actinic.com/showthread.php?t=32755
Uncompressing the site on messes about with the comments for example..heres a bit of the code before Actinic upload (certain things removed for obvious reasons):
<ul>
<li id="tab2" class=""><a href="#">clothing<!--[if gt IE 6]><!--></a><!--<![endif]--><!--[if lt IE 7]><table border="0"><tr><td><iframe src="javascript:false;" scrolling="no" frameborder="0" width="0" height="0" title="" style="width:362px; height:437px;"></iframe><![endif]-->
<div class="wrapper twocols">
<div class="shadow">
<div class="container">
<div class="inner clearfix">
<div class="drop first">
<ul>
<li><a href="#">column 1</a></li>
</ul>
</div><!--first-->
<div class="drop last">
<ul>
<li><a href="#">column 2</a></li>
</ul>
</div><!--last-->
</div>
</div>
</div>
</div><!--[if lt IE 7]></td></tr></table></a><![endif]-->
</li>
</ul>
---------------------- > And after Actinic upload the first bits messed up, stripping certain comments and thus messing up the menu.
<ul>
<li id="tab2" class=""><a href="">clothing<!--[if gt IE 6]>></a><![endif]><table border="0"><tr><td><iframe src="javascript:false;" scrolling="no" frameborder="0" width="0" height="0" title="" style="width:362px; height:437px;"></iframe><![endif]>
<div class="shadow">
.......etc
Is there any way round this? Norman mentioned something in one of the posts, but I don't get what he means "Create Variables that contain the problematic content as the default value and use them wherever said content is needed."
I have tried to include a file detailed in the AUG ie: <a rel="fragment" href=http://www.domain.com/menu.html but for some reason it surrounds the content in <span></span> which again messes up the menu.
If anyone can stop me from spinning around and point me in a good direction I would be very happy.
Darren
Hi, bit of an problem here and I know theres a way around somehow..(hopefully).
I have a multi column dropdown menu that uses css and conditional comments to support all browsers...the problem boy of the class being IE6 of course.
The menu and html works fine in a standard html page but when put into actinic, the program complains and messes it all up.
I found a similar post here:
http://community.actinic.com/showthread.php?t=37771
and a link about uncompressing here
http://community.actinic.com/showthread.php?t=32755
Uncompressing the site on messes about with the comments for example..heres a bit of the code before Actinic upload (certain things removed for obvious reasons):
<ul>
<li id="tab2" class=""><a href="#">clothing<!--[if gt IE 6]><!--></a><!--<![endif]--><!--[if lt IE 7]><table border="0"><tr><td><iframe src="javascript:false;" scrolling="no" frameborder="0" width="0" height="0" title="" style="width:362px; height:437px;"></iframe><![endif]-->
<div class="wrapper twocols">
<div class="shadow">
<div class="container">
<div class="inner clearfix">
<div class="drop first">
<ul>
<li><a href="#">column 1</a></li>
</ul>
</div><!--first-->
<div class="drop last">
<ul>
<li><a href="#">column 2</a></li>
</ul>
</div><!--last-->
</div>
</div>
</div>
</div><!--[if lt IE 7]></td></tr></table></a><![endif]-->
</li>
</ul>
---------------------- > And after Actinic upload the first bits messed up, stripping certain comments and thus messing up the menu.
<ul>
<li id="tab2" class=""><a href="">clothing<!--[if gt IE 6]>></a><![endif]><table border="0"><tr><td><iframe src="javascript:false;" scrolling="no" frameborder="0" width="0" height="0" title="" style="width:362px; height:437px;"></iframe><![endif]>
<div class="shadow">
.......etc
Is there any way round this? Norman mentioned something in one of the posts, but I don't get what he means "Create Variables that contain the problematic content as the default value and use them wherever said content is needed."
I have tried to include a file detailed in the AUG ie: <a rel="fragment" href=http://www.domain.com/menu.html but for some reason it surrounds the content in <span></span> which again messes up the menu.
If anyone can stop me from spinning around and point me in a good direction I would be very happy.
Darren
Comment