setishock
03-15-2009, 05:40 AM
Resolved
And I thought I'd come back and share what I found to make it work like I wanted it to.
The code below is from CoolText.com. It's to make a mouseover button. You put your images where you can find them and mod the path to suite. This got me on the way to figuring out how to make some eye candy buttons.
<img src="cooltext416064551.png"
onmouseover="this.src='cooltext416064551MouseOver.png';"
onmouseout="this.src='cooltext416064551.png';" />
Where I wanted to park it was not cooperating. It finally dawned on me to park the code between some div tags. It's parked in the footer code just after the phrase for the time. It wound up in the lower left corner and that's cool with me for now. I have replaced parts of the link with garbage to keep snoops from linking to this once it's done.
<div><img src="http://animeappeal.com/yadda/images/blah/od1/cv-a.png"
onmouseover="this.src='http://animeappeal.com/yadda/images/blah/od1/cv-b.png';"
onmouseout="this.src='http://animeappeal.com/yadda/images/blah/od1/cv-a.png';" /></div>
What I'm wanting to do is make the second image (the mouseover image) a clickable image with an embedded link. The end goal is to have them as affiliate buttons and/or page jumpers. But getting the embedded link to work is putting the kabosh on it for now. The part I have working is here> http://animeappeal.com/forums/index.php
It's in the Traumatic Tinkering theme at the bottom left.
Any ideas?
--------------- Added 1237111408 at 1237111408 ---------------
<div><img src="http://animeappeal.com/yadda/images/blah/od1/cv-a.png"
onmouseover="this.src='http://animeappeal.com/yadda/images/blah/od1/cv-b.png';"
onmouseout="this.src='http://animeappeal.com/yadda/images/blah/od1/cv-a.png';" /></div>
Amazing what you find on Google when you word it just right. In another forum a OP was asking to do something like I wanted to do, just worded differently. A responce from another was besides being amusing, almost spot on.
<input type="button" value="Click Me Baby One More Time" onClick="location.href='http://www.britneyspears.com'">
I didn't need the button part since I have my own. From onclick back was what I needed. I pasted that part to the code under the onmouseover line and it went right to the BS site.
I fixed the url to point to where I wanted to go and it works like a charm.
And I thought I'd come back and share what I found to make it work like I wanted it to.
The code below is from CoolText.com. It's to make a mouseover button. You put your images where you can find them and mod the path to suite. This got me on the way to figuring out how to make some eye candy buttons.
<img src="cooltext416064551.png"
onmouseover="this.src='cooltext416064551MouseOver.png';"
onmouseout="this.src='cooltext416064551.png';" />
Where I wanted to park it was not cooperating. It finally dawned on me to park the code between some div tags. It's parked in the footer code just after the phrase for the time. It wound up in the lower left corner and that's cool with me for now. I have replaced parts of the link with garbage to keep snoops from linking to this once it's done.
<div><img src="http://animeappeal.com/yadda/images/blah/od1/cv-a.png"
onmouseover="this.src='http://animeappeal.com/yadda/images/blah/od1/cv-b.png';"
onmouseout="this.src='http://animeappeal.com/yadda/images/blah/od1/cv-a.png';" /></div>
What I'm wanting to do is make the second image (the mouseover image) a clickable image with an embedded link. The end goal is to have them as affiliate buttons and/or page jumpers. But getting the embedded link to work is putting the kabosh on it for now. The part I have working is here> http://animeappeal.com/forums/index.php
It's in the Traumatic Tinkering theme at the bottom left.
Any ideas?
--------------- Added 1237111408 at 1237111408 ---------------
<div><img src="http://animeappeal.com/yadda/images/blah/od1/cv-a.png"
onmouseover="this.src='http://animeappeal.com/yadda/images/blah/od1/cv-b.png';"
onmouseout="this.src='http://animeappeal.com/yadda/images/blah/od1/cv-a.png';" /></div>
Amazing what you find on Google when you word it just right. In another forum a OP was asking to do something like I wanted to do, just worded differently. A responce from another was besides being amusing, almost spot on.
<input type="button" value="Click Me Baby One More Time" onClick="location.href='http://www.britneyspears.com'">
I didn't need the button part since I have my own. From onclick back was what I needed. I pasted that part to the code under the onmouseover line and it went right to the BS site.
I fixed the url to point to where I wanted to go and it works like a charm.