Announcement

Collapse
No announcement yet.

Is there embedded code in Actinic catalog?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Is there embedded code in Actinic catalog?

    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

    #2
    Embedded HTML

    Have you looked in Design / Text / HTML
    There is HTML in there which can be ammended.

    In response to your previous query.
    Actinic changes a <td> tag to different percentage widths when the number of columns across the page is ammended in 'Design Options / Sections' ie when this is set to 3, Actinic automatically generates <td width="33%"> before the section.

    Comment


      #3
      Hi,

      If this is to do with sections then the code is coming from 'Design | Text'. Click on the 'Go To' button and type 1187 in the ID field and click 'OK'.

      1187, 1188 and 1189 is the code that creates a table around your sections.

      I hope this helps.
      ********************
      Tracey
      SellerDeck

      Comment


        #4
        thanks

        i hadn't seen the HTML references under the design tab yet!

        deleting those numbers fixed it for me, thanks!

        Comment

        Working...
        X