Forum buttons and text fields

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Forum buttons and text fields

Joseph
This post was updated on .
http://www.pfyfp.com/forum.php

I am trying to get my buttons to have a hover effect while keeping all of the button styles and text field styles seperate from one another. I would like it to be styled like this:

button a{
        background-color: #333;
        color: #FFF;
        border: 1px solid #888;
        padding: 2px;
        cursor: pointer;
}
button a:hover{
        background-color: #666;
        color: #FFF;
        border: 1px solid #888;
        padding: 2px;
        cursor: pointer;
}

Text areas and text area input fields to look like this:

textarea{
background-color:#333;
border: 1px solid #888;
}

Thanks!