Can somone give me an idea how I would approach this.
I want to have a block of text and when I hover over, the text it would change to other text, say spanish. When I move off the block of text it would revert to the original copy.Hi iangeo,
You could do this using javascript. Let's say your block of text is within a span tag
<span onmouseover="this.innerHTML = 'spanish text';" onmouseout="this.innerHTML = 'english text';">english text</span>Thanks, I understand this code. Unfortunatly I don't know the Javascript part yet. Oh well, another program to learn.
I want to have a block of text and when I hover over, the text it would change to other text, say spanish. When I move off the block of text it would revert to the original copy.Hi iangeo,
You could do this using javascript. Let's say your block of text is within a span tag
<span onmouseover="this.innerHTML = 'spanish text';" onmouseout="this.innerHTML = 'english text';">english text</span>Thanks, I understand this code. Unfortunatly I don't know the Javascript part yet. Oh well, another program to learn.