Friday 16 September 2011

Does anyone know how to make a new picture hover over another picture on myspace?

I used to have a v for vendetta mask hover over all my pictures when you would roll your mouse over it but i changed my layout and can't find it anymore. PLEASE help me!!!!
Does anyone know how to make a new picture hover over another picture on myspace?
it was probably a separate HTML text that preformed over top of the pictures...if you have the layout code when you had it working i could try and pull it out, it would be near to the parts when the text started out something like this

%26lt;image%26gt;



and so on other wise its just a bit of HTML that you deleted and need to find again
Does anyone know how to make a new picture hover over another picture on myspace?
It can be done easily using Javascript. But Im not so sure if Myspace allows user to use JS.



Here is the code. Replace the %26quot;Image_1%26quot; to full path to your image %26quot;example.gif%26quot;. The %26quot;Image_2%26quot; is the image that you want your friends to see when they point they mouse over.



%26lt;img src=%26quot;image_1%26quot; onmouseover=%26quot;this.src='image_2';%26quot;

onmouseout=%26quot;this.src='image_1';%26quot;/%26gt;