How do you change the background color when going over an image in dreamweaver?

  • Thread starter Thread starter Sham G
  • Start date Start date
S

Sham G

Guest
i'm making a website for a college module and i want to change the background colour when i go over the link i'm only using html is it possible?
 
The event that controls that is the On (RollOver) event.

You have to create a 2nd background with the colour you want to appear whenever you pass over the link.

Then yo have to write the appropriate code to the link;
something like
On (RollOver) {background="filename"}
 
The event that controls that is the On (RollOver) event.

You have to create a 2nd background with the colour you want to appear whenever you pass over the link.

Then yo have to write the appropriate code to the link;
something like
On (RollOver) {background="filename"}
 
Back
Top