The difference between the unstyled and styled buttons is that the unstyled buttons don't have an attribute of class="button".
You should be able to log into WP, click plugins, click edit on the Subscribe2 plugin and find where the input type=submit buttons are and add a class="button" to them.
<input type="submit" class="button" value="Subscribe" name="subscribe"/>
<input type="submit" class="button" value="Unsubscribe" name="unsubscribe"/>
Edit: In your css file, you will want to create a class called button:
.button {
background-color: #e0ffff;
color: #ffffff;
}
You'll need to change/add these values to something that suits you. You can find out more about css at w3schools. You will probably want to look at background, text, font, and box model.
Alright, I got it this time!
Change line 949 in style.css to this:
#submitbox #submit, .button {
Change line 960 in style.css to this:
#submitbox #submit:hover, .button:hover {
Andy Gaskell
2009-08-24 07:31:14