Announcement

Collapse
No announcement yet.

Search from outside Actinic

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

    Search from outside Actinic

    Is it simply a matter of copying the generated form from the search page and pasting into my index page to allow searches from outside Actinic?

    It almost seems too simple!!

    Many thanks
    Jennie Hunt

    www.handbagsandgladrags.co.uk

    #2
    <form name="simplesearch" action="/cgi-bin/ss000002.pl" METHOD="GET">
    <td height="22" align="left" noWrap><div align="left">
    <input type="TEXT" name="SS" size="10" value="Search" onFocus="this.value='';this.style.background='#FFFFFF' style='border-width:1px; border-color:#003366;'">
    </div></td>
    <td align="left" valign="top" noWrap><div align="right">
    <input name="ACTION" type="image" src="images/index_go.gif" alt="Go!" align="right" >
    <br>
    <input TYPE=HIDDEN NAME="PR" VALUE="-1">
    <input TYPE=HIDDEN NAME="TB" VALUE="A">
    <input TYPE=HIDDEN NAME="SHOP" VALUE="">
    </div></td>
    </tr>

    </form>
    This is the one from my site. A few things you would have to change:

    1)
    action="/cgi-bin/ss000002.pl"
    You need to change the script ID (The number at the end, 2 on mine) to yours. If you are not sure of this just go in to your cart and look what number is in the address bar.

    2)
    style='border-width:1px; border-color:#003366;'"
    This controls the colour of the border around the input box, change to what you want. Mines Navy(ish) blue

    and finally 3)

    type="image" src="images/index_go.gif" alt="Go!"
    this is the path to the image that I am using as my 'go' button, change this to what ever yours is, and you can also change the alternative text (ALT) tag to say what ever you want when hovered over.

    go to http://www.bathroomexpress.co.uk to see what it looks like on mine.
    www.bathroomexpress.co.uk

    Comment


      #3
      That's great - thank you,
      Jennie Hunt

      www.handbagsandgladrags.co.uk

      Comment

      Working...
      X