Hi all,
I've created a custom menu with CSS for the section headers in the store I'm developing.
I've managed to find and edit all relevant templates to what i need, but a bit of rogue TABLE code keeps inserting itself:
<TABLE width="100%"><TR><TD WIDTH="100%">
which is really annoying when it wraps itself around each one of my <LI> tags in the menu list! so that my resulting code becomes this:
<ul id="navlist">
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Chubb_safes.html">Chubb safes</a></li> </TD>
</TR></TABLE>
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Aldridge.html">Aldridge</a></li> </TD>
</TR></TABLE>
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Abloy.html">Abloy</a></li> </TD>
</TR></TABLE>
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Burg_Waechter.html">Burg Waechter</a></li> </TD>
</TR></TABLE>
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Phoenix.html">Phoenix</a></li> </TD>
</TR></TABLE>
</ul>
...nasty!!!
I can't seem to find where in the store this can be manipulated/removed, and so am left to the conclusion that it is automatically inserted by Actinic somehow... can it be stopped?? I guess I need to completely rewrite the templates...
regards,
Luke
I've created a custom menu with CSS for the section headers in the store I'm developing.
I've managed to find and edit all relevant templates to what i need, but a bit of rogue TABLE code keeps inserting itself:
<TABLE width="100%"><TR><TD WIDTH="100%">
which is really annoying when it wraps itself around each one of my <LI> tags in the menu list! so that my resulting code becomes this:
<ul id="navlist">
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Chubb_safes.html">Chubb safes</a></li> </TD>
</TR></TABLE>
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Aldridge.html">Aldridge</a></li> </TD>
</TR></TABLE>
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Abloy.html">Abloy</a></li> </TD>
</TR></TABLE>
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Burg_Waechter.html">Burg Waechter</a></li> </TD>
</TR></TABLE>
<TABLE width="100%"><TR><TD WIDTH="100%">
<li><a href="Phoenix.html">Phoenix</a></li> </TD>
</TR></TABLE>
</ul>
...nasty!!!
I can't seem to find where in the store this can be manipulated/removed, and so am left to the conclusion that it is automatically inserted by Actinic somehow... can it be stopped?? I guess I need to completely rewrite the templates...
regards,
Luke
Comment