Hello .. I'm just getting confused how to make like yahoo's submit button in registration page ,, any help guys ? for who didn't understand i mean the button that you click to register "create My Account" its with css because when you click on it it gives you another pic
do you mean when the pointer is on the button or when the button is clicked if its when its over the button, use :hover
It's called a rollover, and isn't supported by Internet Explorer 6 unless you use JavaScript. Simply create a new style rule for your submit button and add :hover to it, then put your styles in it. Here's a rough example: <input class="submit" type="Submit" value="Complete Your Registration"> #form-name .submit:hover { /* your hover specific styles for the submit button go here */ } Code (markup): Note that #form-name corresponds (goes) with the ID on the form element that it belongs in. So for example, if the form had an ID of "registration-form" then the selector would look like #registration-form .submit:hover { } with the styles going inside the curly brackets.