Forum buttons and text fields
Posted by
Joseph on
URL: https://support.nabble.com/Forum-buttons-and-text-fields-tp5428603.html
http://www.pfyfp.com/forum.phpI 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!