Jump to content

[SOLVED] Error? hover:...


eaglelegend

Recommended Posts

From what Ive heard, the only way to apply a hover effect is through an <a> (active) state. I could be wrong though  :-\ Could you provide any info from where you might have come to this technique?

 

a {

color:blue;

}

 

a:hover {

color:red;

}

Link to comment
Share on other sites

im trying everything possible, well what I know anyway, since im not the grand master of CSS thats why I posted here, thing is the hovers colors are showing ie the white which ia meant to be the hover colors and the I have lost the red color I dont know why...

Link to comment
Share on other sites

.text_box {
background-color:hover(color:#ffffff;) #e73738;
border:hover(color:#ffffff;) 4px solid #292929;
color:hover(color:#e73738;) #ffffff;
}

 

 

wtf???? Am I missing some new syntax in css???

 

try this instead...

 

.text_box {
background-color:#e73738;
border:4px solid #292929;
color:#ffffff;
}

.text_box:hover {
background-color:#fff;
border-color:#fff;
color:#fff;
}

 

you will need to use some javascript in IE6 to get this to work (but I never bother with that - it rewards people who don't upgrade to better browsers).

Link to comment
Share on other sites

How rude - you come here asking for help, and the ToonMariner took the time to re-write your code so it will work, and you just brush it off with "Im not worrying about that anymore".

 

Then don't ask and waste our time in the first place.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.