Where Do You Download Moving Red Arrows GIF?

by BJ Min
11 replies
hi,

i was wondering do you a place to download
cool moving red arrows (gif file) to increase
conversion?

also, does anyone know how to make the
optin button to turn from RED TO GREEN
when you move the mouse button near it?
(I have seen this with many pages...and it looks very cool)

thanks
BJ
#arrows #download #gif #moving #red
  • Profile picture of the author Tsnyder
    Signature
    If you knew what I know you'd be doing what I do...
    {{ DiscussionBoard.errors[590295].message }}
  • Profile picture of the author BJ Min
    hey...thanks!

    does ANYONE know how to get that ORDER BUTTON
    to turn from RED to GREEN?

    just like http://www.actionpopup.com

    what software or script do you have to use?

    i would want to pay for that or find out how to do it...

    bj
    {{ DiscussionBoard.errors[590315].message }}
    • Profile picture of the author Dan C. Rinnert
      Originally Posted by BJ Min View Post

      does ANYONE know how to get that ORDER BUTTON
      to turn from RED to GREEN?
      That's just a simple mouseover Javascript. Do a Google search and you'll probably come up with a number free or cheap scripts to use.
      Signature

      Dan's content is irregularly read by handfuls of people. Join the elite few by reading his blog: dcrBlogs.com, following him on Twitter: dcrTweets.com or reading his fiction: dcrWrites.com but NOT by Clicking Here!

      Dan also writes content for hire, but you can't afford him anyway.
      {{ DiscussionBoard.errors[590343].message }}
  • Profile picture of the author Popstar
    Like someone said above, take it from the source code:

    <div align="center"><table border="0" cellspacing="0" cellpadding="5" align="center">
    <tr><td nowrap style="background:#ce0000" onMouseDown="this.style.backgroundColor='#ce0000'" onMouseOver="this.style.backgroundColor='#009900'" onMouseOut="this.style.backgroundColor='#ce0000'">
    <input type="submit" style="width:100%; cursor:pointer; cursor:hand; font-family:Tahoma, Verdana; font-size: 16pt; font-weight:bold; letter-spacing: -1; height:40px;" value="Get Action PopUp for $27!" name="submit"></td></tr></table>
    </div>

    Just change the value with what you want your button to say... and of course, you'll have to direct it to the page you want.
    {{ DiscussionBoard.errors[590654].message }}
  • {{ DiscussionBoard.errors[592842].message }}
  • Profile picture of the author BJ Min
    how do you make it REDIRECT?

    for example...if you want that code to redirect
    to domain.com, how would that code above look like?
    {{ DiscussionBoard.errors[592862].message }}
  • Profile picture of the author Doug Castleton
    As PopStar said... "just change the value with what you want your button to say."

    Enclose the Aweber Button inside the table cell "<td>" as the input button is shown in the example above and you'll get the same effect.

    <td nowrap style="background:#ce0000" onMouseDown="this.style.backgroundColor='#ce0000'" onMouseOver="this.style.backgroundColor='#009900'" onMouseOut="this.style.backgroundColor='#ce0000'"> <input type="submit" ###and the rest of your Aweber button variables here###></td>
    {{ DiscussionBoard.errors[592879].message }}
  • Profile picture of the author BJ Min
    sorry for being a tech dummie

    this is my HTML code for my AWBER CODE (full)

    <center><form method="post" action="http://www.aweber.com/scripts/addlead.pl" target="_new">
    <input type="hidden" name="meta_web_form_id" value="1755540765">
    <input type="hidden" name="meta_split_id" value="">
    <input type="hidden" name="unit" value="lotterymethod00">
    <input type="hidden" name="redirect" value="http://www.lotterymethod.com/0/page02.htm" id="redirect_12f6746b58636221785b1c2f98256295">
    <input type="hidden" name="meta_redirect_onlist" value="http://www.lotterymethod.com/0/page02.htm">
    <input type="hidden" name="meta_adtracking" value="lotterymethod.com">
    <input type="hidden" name="meta_message" value="1">
    <input type="hidden" name="meta_required" value="from">
    <input type="hidden" name="meta_forward_vars" value="0">
    <table>
    <tr><td colspan=2><center>&nbsp;</center></td></tr>
    <tr><td>First Name:</td><td><input type="text" name="name" value="" size="20"></td></tr>
    <tr><td>Your Email:</td><td><input type="text" name="from" value="" size="20"></td></tr>
    <tr><td align="center" colspan="2"><input type="submit" name="submit" value="YES! I Want In! >>"></td></tr>
    <tr><td colspan=2><center></center></td></tr>
    </table>
    </form>

    <img src="http://forms.aweber.com/form/displays.htm?id=jOysrKwsDOxsrA==" border="0" />
    </center>



    so what part or (everything) do i paste to that above code?
    {{ DiscussionBoard.errors[592910].message }}
    • Profile picture of the author WebScript
      Originally Posted by BJ Min View Post

      sorry for being a tech dummie
      ...
      ...

      so what part or (everything) do i paste to that above code?

      Yes, everything


      Basically, your AWeber form code remains the same, except that the
      <input type="submit" ...>
      is replaced by the code (above) given by Popstar.

      So, breaking it up so it is easier to see what's happening:

      This is the start of the code and it is exactly as you provided your AWeber form code:
      HTML Code:
      <center><form method="post" action="http://www.aweber.com/scripts/addlead.pl" target="_new">
      <input type="hidden" name="meta_web_form_id" value="1755540765">
      <input type="hidden" name="meta_split_id" value="">
      <input type="hidden" name="unit" value="lotterymethod00">
      <input type="hidden" name="redirect" value="http://www.lotterymethod.com/0/page02.htm" id="redirect_12f6746b58636221785b1c2f98256295">
      <input type="hidden" name="meta_redirect_onlist" value="http://www.lotterymethod.com/0/page02.htm">
      <input type="hidden" name="meta_adtracking" value="lotterymethod.com">
      <input type="hidden" name="meta_message" value="1">
      <input type="hidden" name="meta_required" value="from">
      <input type="hidden" name="meta_forward_vars" value="0">
      <table><tr><td colspan=2><center>&nbsp;</center></td></tr>
      <tr><td>First Name:</td><td><input type="text" name="name" value="" size="20"></td></tr>
      <tr><td>Your Email:</td><td><input type="text" name="from" value="" size="20"></td></tr>
      <tr><td align="center" colspan="2">
      
      <img src="http://forms.aweber.com/form/displays.htm?id=jOysrKwsDOxsrA==" border="0" /></center>

      Remove the AWeber submit button code:
      Code:
      <input type="submit" name="submit" value="YES! I Want In! >>">

      Replace it with the code (above) given by Popstar: (remember to edit the text you want to show in the button)
      HTML Code:
      <div align="center"><table border="0" cellspacing="0" cellpadding="5" align="center">
      <tr><td nowrap style="background:#ce0000" onMouseDown="this.style.backgroundColor='#ce0000'" onMouseOver="this.style.backgroundColor='#009900'" onMouseOut="this.style.backgroundColor='#ce0000'">
      <input type="submit" style="width:100%; cursorointer; cursor:hand; font-family:Tahoma, Verdana; font-size: 16pt; font-weight:bold; letter-spacing: -1; height:40px;" 
      value="YES! I Want In! >>" 
      name="submit"></td></tr></table></div>

      Finish with the remainder of the code from your original AWeber code.
      HTML Code:
      </td></tr>
      <tr><td colspan=2><center></center></td></tr></table></form>
      
      <img src="http://forms.aweber.com/form/displays.htm?id=jOysrKwsDOxsrA==" border="0" /></center>

      Then just paste the three pieces of code together:
      HTML Code:
      <center><form method="post" action="http://www.aweber.com/scripts/addlead.pl" target="_new">
      <input type="hidden" name="meta_web_form_id" value="1755540765">
      <input type="hidden" name="meta_split_id" value="">
      <input type="hidden" name="unit" value="lotterymethod00">
      <input type="hidden" name="redirect" value="http://www.lotterymethod.com/0/page02.htm" id="redirect_12f6746b58636221785b1c2f98256295">
      <input type="hidden" name="meta_redirect_onlist" value="http://www.lotterymethod.com/0/page02.htm">
      <input type="hidden" name="meta_adtracking" value="lotterymethod.com">
      <input type="hidden" name="meta_message" value="1">
      <input type="hidden" name="meta_required" value="from">
      <input type="hidden" name="meta_forward_vars" value="0">
      <table><tr><td colspan=2><center>&nbsp;</center></td></tr>
      <tr><td>First Name:</td><td><input type="text" name="name" value="" size="20"></td></tr>
      <tr><td>Your Email:</td><td><input type="text" name="from" value="" size="20"></td></tr>
      <tr><td align="center" colspan="2">
      
      <!--  -->
      
      <div align="center"><table border="0" cellspacing="0" cellpadding="5" align="center">
      <tr><td nowrap style="background:#ce0000" onMouseDown="this.style.backgroundColor='#ce0000'" onMouseOver="this.style.backgroundColor='#009900'" onMouseOut="this.style.backgroundColor='#ce0000'">
      <input type="submit" style="width:100%; cursorointer; cursor:hand; font-family:Tahoma, Verdana; font-size: 16pt; font-weight:bold; letter-spacing: -1; height:40px;" value="YES! I Want In! >>" name="submit"></td></tr></table></div>
      
      <!--  -->
      
      </td></tr>
      <tr><td colspan=2><center></center></td></tr></table></form>
      
      <img src="http://forms.aweber.com/form/displays.htm?id=jOysrKwsDOxsrA==" border="0" /></center>
      That should do it.
      {{ DiscussionBoard.errors[597145].message }}
  • Profile picture of the author Samuel Lee
    Thank you for your post productcreator, will be using these not only on my sales pages, but adding to youtube vids as well! Many thanks!
    {{ DiscussionBoard.errors[597262].message }}

Trending Topics