eaglelegend Posted April 9, 2008 Share Posted April 9, 2008 What is the problem with?... .text_box { background-color:hover(color:#ffffff;) #e73738; border:hover(color:#ffffff;) 4px solid #292929; color:hover(color:#e73738;) #ffffff; } thanks. Quote Link to comment Share on other sites More sharing options...
eaglelegend Posted April 9, 2008 Author Share Posted April 9, 2008 anyone know? ??? Quote Link to comment Share on other sites More sharing options...
Cosizzle Posted April 9, 2008 Share Posted April 9, 2008 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; } Quote Link to comment Share on other sites More sharing options...
eaglelegend Posted April 9, 2008 Author Share Posted April 9, 2008 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... Quote Link to comment Share on other sites More sharing options...
eaglelegend Posted April 9, 2008 Author Share Posted April 9, 2008 this is where I found it... http://www.netobjects.com/workbench/textrollover.html however I have now got to the point where I put eg bg color:#fffff then that info there after... I know this here is not correct but I just writ it for quickness Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted April 9, 2008 Share Posted April 9, 2008 .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). Quote Link to comment Share on other sites More sharing options...
eaglelegend Posted April 9, 2008 Author Share Posted April 9, 2008 Thanks guys, I am not bothering with that now, I just stuck with it not hovering for now, although I have writen up some nice code, nice colors and has tooltips on the forms etc. Quote Link to comment Share on other sites More sharing options...
haku Posted April 9, 2008 Share Posted April 9, 2008 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. Quote Link to comment Share on other sites More sharing options...
eaglelegend Posted April 9, 2008 Author Share Posted April 9, 2008 you may ask him, I said thank you via mail, im sorry I didnt copy and past it to show you all personally! Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted April 9, 2008 Share Posted April 9, 2008 easy now tigers!!!! there'll only be flaming here if its warrented! - flame away people.... eaglelegend has indeed PM'd me - for future reference I don't need thanks... PayPal donations yes - but thanks not necessary... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.