Jump to content

Recommended Posts

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
https://forums.phpfreaks.com/topic/100279-solved-error-hover/#findComment-512744
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
https://forums.phpfreaks.com/topic/100279-solved-error-hover/#findComment-512780
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.