MyBB Community Forums

Full Version: Hover over buttons?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

how do i make this button:
[attachment=24086]

look the same as this:
[attachment=24087]

the ones in second pic i managed to edit, but the one in the chat box i cant seem to find the properties for it to change the style Sad ?
Add this to your global.css file:
input[type=submit]{
/*Buttons style here*/

}
hi & thanks for reply Smile

ok ive change the color of button, but not sure what the hover over code is? ive tried this but no joy:

input[type=submit]{
padding: 2px;
cursor: pointer;
font-family: Tahoma, Verdana, Arial, Sans-Serif;
background: #385a48;
color: #ffffff;
}

.submit:hover {
padding: 2px;
color: #ffffff;
background: #000000;

any ideas please & thanks again Smile
ahh ive sorted it Big Grin

thanks again.. been trying for days to suss that one lol ^^
Try with this:
input[type=submit]:hover{
aye that was it Smile

ta for your help \o/