Announcement

Collapse
No announcement yet.

Design-Text netquotevar html customisation

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

    Design-Text netquotevar html customisation

    Where can I find the html to customise the appearance of NETQUOTEVARS EXTINFOLINK, PRODUCTQUANTITY and PRODUCTLINKTEXT?
    They all appear in Act_ProductLine.html.
    The Help file directs me to Design|Text||Website|HTML, but doesn't specify which field or give an ID no.
    Lisa
    www.alanaecology.com

    #2
    Hi,

    You can put HTML into Act_ProductLine.html around the netquotevars to provide the desired look. for example, i have:

    Code:
    <span class="actxxsmall">NETQUOTEVAR:PRODUCTREF</span>
    This takes the style from the actinc css to make the product reference smaller than usual
    Matt
    Actinic User since v.3

    Custom Actinic Site Specialist:
    <a href="http://www.glowsticksdirect.co.uk/">GlowSticksDirect.co.uk</a>
    <a href="http://www.digishopdirect.co.uk/">DigiShopDirect.co.uk</a>
    <a href="http://www.calibreshopping.co.uk/">CalibreShopping.co.uk</a>

    Comment


      #3
      Yes that works for text-based NETQUOTEVARS, but, for example, PRODUCTQUANTITY is a form box and I want to change the size of the box.
      Lisa
      www.alanaecology.com

      Comment


        #4
        see this thread from last week

        http://community.actinic.com/showthr...=&threadid=299

        I have yet to try it.
        Owner of a broken heart

        Comment


          #5
          I can't load that post because i'm not a developer.... perhaps you could post the essential parts

          Matt
          Actinic User since v.3

          Custom Actinic Site Specialist:
          <a href="http://www.glowsticksdirect.co.uk/">GlowSticksDirect.co.uk</a>
          <a href="http://www.digishopdirect.co.uk/">DigiShopDirect.co.uk</a>
          <a href="http://www.calibreshopping.co.uk/">CalibreShopping.co.uk</a>

          Comment


            #6
            Go to 'Design | Text | Web site | HTML' and look for the line that says:

            %s<INPUT TYPE=text NAME="%s" SIZE="%d" MAXLENGTH="%d">.

            You can replace the two %d variables with hard-coded numbers. You can replace both, but you cannot just replace one of them.

            Comment


              #7
              Thanks Chris

              I have been busy and never got back to this one.
              Owner of a broken heart

              Comment


                #8
                Thanks Chris,
                I also need to find the html that formats the text which links to the extra information pop-up box in products?
                I am trying to make the text link the same size as the product description (xxsmall) and a different colour.

                In Act_ProductLine I have:

                <span class="actxxsmall">NETQUOTEVAR:PRODUCTDESCRIPTION&nbsp; NETQUOTEVAR:EXTINFOLINK
                NETQUOTEVAR:EXTINFOBUTTON <br>
                NETQUOTEVAR:PRODUCTBEGINLINK
                NETQUOTEVAR:PRODUCTLINKTEXT
                NETQUOTEVAR:PRODUCTENDLINK
                NETQUOTEVAR:PRICEEXPLANATION </span>

                but only the product description changes size. I have also tried changing the colour using <font...etc>, but the linking text [More info...] remains large and green - whatever I do to the html in this template. So I figure the html that controls its appearance lives somewhere else...but where?
                Can you help?!

                Is there a definitive list available of the ID nos for the items in Design/Text?

                Lisa
                Lisa
                www.alanaecology.com

                Comment


                  #9
                  The problem is that hyperlinks have their size set directly in the stylesheet, and this overrides any styles you put outside of the hyperlink.

                  The IDs you want are 1191 and 1192

                  Change them to

                  <A HREF="%s"><span class="actxxsmall">

                  and

                  </span></a>

                  Is there a definitive list available of the ID nos for the items in Design/Text?

                  Not yet.

                  Comment

                  Working...
                  X