I've looked thru the useful threads, and the first three pages of this section. I don't understand how to make comment box hovers. Help?
To just get a hover effect try this:
.textbox:hover {
p-align : center;
background-color : #;
font-family : ;
font-size : px;
color : #;
width : px !important;
height : px !important;
border : px;
text-align : ;
}
But there's also a focus effect. It's like you click on the comment box itself and the background changes. Look at the 's comment box - the normal is one where the red is down, the hover one is with red on the top and the focus is all white. I know I'm kinda hard to understand, but here's the code for the focus effect:
.textbox:focus {
p-align : center;
background-color : #;
font-family : ;
font-size : px;
color : #;
width : px !important;
height : px !important;
border : px;
text-align : ;
}
Also if you want to make some hover/focus tricks with a 'leave a comment' box then just put ':focus' or ':hover' behind the .forminput.
Also everything I said should be in style tags of course. :)
I hope I helped you in some way.
xD I still don't get it =/
you need to know what you want to change when hovering
lets say your background color before hovering is black and the text is white
then the coding would look this way
.textbox{
background-image:url();
background:color:;
color:}
now you want to have the textbox changing it's background to white and the text-color to black:
.textbox:hover{
background-image:url();
background:color:;
color:;}
yeah and that's it. if you want to have an effect you need to relace the former information by a new one. normall i just copy the .textbox{} stuff and then chnage the this that should change while hovering it. in the example i showed the background and color-stuff. but you can do this with every other partial coding, too. for example font, font-size, font-weigth. really EVERYTHING