View previous topic :: View next topic |
Author |
Message |
cubanlord

Joined: 08 Jul 2005 Location: In Japan!
|
Posted: Wed May 03, 2006 3:52 am Post subject: I need a web button script. |
|
|
I have a picture that I made and would like to make it into a button on my website. How do I make it into a button so that when you click on the button, it takes you to another website? I am using Frontpage. Any help is appreciated. |
|
Back to top |
|
 |
AbbeFaria
Joined: 17 May 2005 Location: Gangnam
|
Posted: Wed May 03, 2006 4:47 am Post subject: |
|
|
I dunno about front page, but the html script is as follows.
<a href="weblink here"><img src="image.jpg"></a>
That should take care of it.
�S� |
|
Back to top |
|
 |
cubanlord

Joined: 08 Jul 2005 Location: In Japan!
|
Posted: Wed May 03, 2006 4:59 am Post subject: |
|
|
AbbeFaria wrote: |
I dunno about front page, but the html script is as follows.
<a href="weblink here"><img src="image.jpg"></a>
That should take care of it.
�S� |
Hey thanks. However, it didn't solve my problem:
I need to button to click in and out. I know how to make a picture have a link on it. However, I made a button and want it to click in and out just like when you touch a real button in real life. Can you help me with that? |
|
Back to top |
|
 |
cubanlord

Joined: 08 Jul 2005 Location: In Japan!
|
Posted: Wed May 03, 2006 5:00 am Post subject: |
|
|
kind of like when you are responding...like I am now...watch how the submit button goes in when you click it then pops back out. |
|
Back to top |
|
 |
AbbeFaria
Joined: 17 May 2005 Location: Gangnam
|
Posted: Wed May 03, 2006 5:40 am Post subject: |
|
|
Ahh, what you want is a rollover type thing. I don't know Frontpage, so can't help you with that. And hand coding is javascript and I am way to rusty to even begin. You should be able to find some scripts online though. Or you can find a page simple enough page with a rollever button, you can view the source and find the coding and copy-paste it into your site. However, if you don't know HTML, you've only been using an editor, that wouldn't really help you since it'd be gibberish.
I guess in a nutshell I'm saying that I can't help you with the rollover. Once upon a time I could, but it's been 4 years since I've tried anything with Javascript. But do a web search for some html/javascript codes, you should find something.
�S� |
|
Back to top |
|
 |
cubanlord

Joined: 08 Jul 2005 Location: In Japan!
|
Posted: Wed May 03, 2006 5:44 am Post subject: |
|
|
AbbeFaria wrote: |
Ahh, what you want is a rollover type thing. I don't know Frontpage, so can't help you with that. And hand coding is javascript and I am way to rusty to even begin. You should be able to find some scripts online though. Or you can find a page simple enough page with a rollever button, you can view the source and find the coding and copy-paste it into your site. However, if you don't know HTML, you've only been using an editor, that wouldn't really help you since it'd be gibberish.
I guess in a nutshell I'm saying that I can't help you with the rollover. Once upon a time I could, but it's been 4 years since I've tried anything with Javascript. But do a web search for some html/javascript codes, you should find something.
�S� |
no no. not a roll-over. I have a simple button that I made. I just need code so that:
when I click on the button, it takes me to a new website.
I can read Html. |
|
Back to top |
|
 |
cubanlord

Joined: 08 Jul 2005 Location: In Japan!
|
Posted: Wed May 03, 2006 5:47 am Post subject: |
|
|
hahahahahahahI got it!!!!!!!
<FORM METHOD="LINK" ACTION="http://www.ralphsesljunction.com">
<INPUT TYPE="submit" VALUE="Clickable Button">
</FORM>
that was the coding i needed.
NOw......can you help me with this:
I don't want the generic button looking thingy. I have a custom button I made. How do i make the custom button I made take the place of the nasty looking button? |
|
Back to top |
|
 |
cubanlord

Joined: 08 Jul 2005 Location: In Japan!
|
Posted: Wed May 03, 2006 6:08 am Post subject: |
|
|
wowow...I figured it out. Thanks though. |
|
Back to top |
|
 |
dbee
Joined: 29 Dec 2004 Location: korea
|
Posted: Wed May 03, 2006 6:22 am Post subject: |
|
|
Quote: |
<FORM METHOD="LINK" ACTION="http://www.ralphsesljunction.com">
<INPUT TYPE="submit" VALUE="Clickable Button">
</FORM>
|
... just because I'm feeling pedantic today. I'd like to add that technically speaking that's a script not code ...
Try,
<INPUT type='submit' background='image.jpg' height='x' width='y' >
If that doesn't suit then prepare yourself to enter the wonderful world of css and cross-browser functionality. You're going to love it
King of Gwangju is probably the guy you want to talk to for various css/design issues I'd imagine. Or failing that, try a forum on the web ... |
|
Back to top |
|
 |
cubanlord

Joined: 08 Jul 2005 Location: In Japan!
|
Posted: Wed May 03, 2006 6:34 am Post subject: |
|
|
dbee wrote: |
Quote: |
<FORM METHOD="LINK" ACTION="http://www.ralphsesljunction.com">
<INPUT TYPE="submit" VALUE="Clickable Button">
</FORM>
|
... just because I'm feeling pedantic today. I'd like to add that technically speaking that's a script not code ...
Try,
<INPUT type='submit' background='image.jpg' height='x' width='y' >
If that doesn't suit then prepare yourself to enter the wonderful world of css and cross-browser functionality. You're going to love it
King of Gwangju is probably the guy you want to talk to for various css/design issues I'd imagine. Or failing that, try a forum on the web ... |
I inputed your code and it gave me the a bland "submit Query" button. I want to try and inport my own button. |
|
Back to top |
|
 |
jay-shi

Joined: 09 May 2004 Location: On tour
|
Posted: Wed May 03, 2006 8:32 am Post subject: |
|
|
Try this for your form field :
<form action="the page you are sending this CGI to get processed" method="post">
<all your form fields and names>
<input type="image" src="link to your button image.jpg" value="Submit" alt="Submit">
</form> |
|
Back to top |
|
 |
cubanlord

Joined: 08 Jul 2005 Location: In Japan!
|
Posted: Wed May 03, 2006 10:39 pm Post subject: |
|
|
man...i have finally got it...thanks all. To the last poster...I tried what you gave me....nothing...thanks for thelp though. |
|
Back to top |
|
 |
|