Announcement

Collapse
No announcement yet.

sub section links difficulties

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

    sub section links difficulties

    ola

    this is my first post so i will try not to embarass myself too much!

    I have got a large catalogue around 2000 products. Some of the sub sections have seven or eight dependent sections.

    All i want is a nice row of numbers 1,2,3,4,5,next.

    I have been at it for about 16 hours & am a complete non-coder.

    Surely this is possible!!!

    Help will be rewarded by gushing praise & possibly chocolate!

    thanks

    chris beardsmore

    #2
    I guess you are talking about Actinic automatically splitting a section into multiple subsections and then creating the navigation to go from one section to the next. It is not really possible to do anything like this, but the following code can be used to create a link to a 'next' and a 'previous' section...
    Code:
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
       <td><a href="NETQUOTEVAR:PREV_SECTION_URL">NETQUOTEVAR:PREV_SECTION_NAME</a></td>
       <td align="right"><a href="NETQUOTEVAR:NEXT_SECTION_URL">NETQUOTEVAR:NEXT_SECTION_NAME</a></td>
      </tr>
    </table>
    Place that code within your overall layout (Act_Primary.html) template.

    If you just want subsections laid out in columns, you can edit the 'Column Count' fields within the 'Layout' tab of a section.

    Comment


      #3
      re links

      thanks for the advice saved me a load of wasted time

      Comment

      Working...
      X