Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
StevenM21 #1
table rollover effect
i have created a table and have almost completed the rollover effect. when I
point at the option in one of the rows, the link highlights a blue but when I
move it away it goes white, so i tried to change it so it wouldgo back to the
background colour of the page but having done this, the row stays the same
colour of the mouseOver effect. this is the code used that give me this result
<tr onMouseover="this.style.backgroundColor='#99CCCC'" style="CURSOR: hand"
onMouseout="this.style.backgroundColor='background .jpg'">
here is a link to the section:
[url]http://www.myworld21.v21hosting.co.uk/hockey.html[/url]
i have only changed the rollover effect to try ad go back to the background
image in the first row of the 1st column. can someone tell me how can i get the
row to go back to the background colour/image?
StevenM21 Guest
-
Using mx:Link without the Rollover effect?
Did you try the ImageButton? it is in the flex\extras folder. Tracy -
Using mx:Link without the Rollover effect?
Where is this ImageButton? Howcome FlexBuilder doesn't know about it? I'm simply trying to have an image with rollover state (change the image... -
Rollover effect on mouse
H I am making a navigation bar and i want to know when ever someone click mouseover to one of the button I want a white fade going back and... -
rollover effect doesn't turn off
Hi, folks! I am documenting a complex relational database application. I have a table that is part of the schema. I have created several... -
Using a rollover to kick off a flash in a different table/table cell
What I'd like to do but don't know if possible through Dreamweaver is the following: The web page has multiple tables. Use a rollover function... -
rilkesf #2
Re: table rollover effect
The problem isn't that you need to go BACK to the background image. It's still
there, it's just been covered up by the color that you put over it with the
onMouseOver script. Instead of trying to bring back the image with the
onMouseOut script, you just need to get rid of the color.
Replace
onMouseout="this.style.backgroundColor='background .jpg'"
with
onMouseOut="this.style.backgroundColor='transparen t';"
That should do it.
rilkesf Guest
-
StevenM21 #3
Re: table rollover effect
cheers rilkesf, i will give that a go once I get back to my laptop that I am building the site on, but as you said it should work
StevenM21 Guest



Reply With Quote

