Announcement

Collapse
No announcement yet.

Which Template

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

    Which Template

    Can anyone tell me which file generates this piece of code as I need to fix the table width
    Attached Files
    Owner of a broken heart

    #2
    I am not expert here so answer rather nervously, I think that form is the address book from Act_Order02.html - towards the top.

    [fx: checks the rest of the messages]
    Yup I'm wrong, take a look here http://community.actinic.com/showthr...&threadid=4179 for more details, it looks like it might be generated from that netquotevar, there are a few width statements in design options but I couldn't say which one it might be.

    Regards,
    Jan Strassen, Mole End Software - Plugins and Reports for Actinic V4 to V11, Sellerdeck V11 to V2018, Sellerdeck Cloud
    Visit our facebook page for the latest news and special offers from Mole End

    Top Quality Integrated label paper for Actinic and Sellerdeck
    A4 Paper with one or two peel off labels, free reports available for our customers
    Product Mash for Sellerdeck
    Link to Google Shopping and other channels, increase sales traffic, prices from £29.95
    Multichannel order processing
    Process Actinic, Sellerdeck, Amazon, Ebay, Playtrade orders with a single program, low cost lite version now available from £19.95

    Comment


      #3
      Thanks Jan

      I an working with Flark on this one so the other thread is posted by him asking the same thing
      Owner of a broken heart

      Comment


        #4
        If it is the NQV as Jan suggested then Design|Options|sitedefaults

        ACTSDWIDTH you can set this to a percentage

        Comment


          #5
          Hi there

          The actual address book is managed by ActinicAddressBook.pm within your site1 folder.

          If you open actinicaddressbook.pm, please look at line 387, you will see the following code:

          $html .= $self->TABLE_(
          BORDER => "1" ,
          CELLSPACING => "1" ,
          CELLPADDING => "0" ,
          BGCOLOR => $self->{NameBgColor},
          WIDTH => '100%',
          ).
          $self->TR(
          $self->TD(
          COLSPAN => 3,
          ' ',
          ).
          $self->TD(
          ALIGN => "CENTER",
          $self->FONT(
          $self->{DeleteLabel}
          )
          )
          );
          This is under the section ADDRESS_BOOK->Show - returns address book HTML

          Hope this helps you Gary
          Nadeem Rasool
          SellerDeck Development

          Comment


            #6
            Thanks

            Nadeem
            Owner of a broken heart

            Comment

            Working...
            X