Hi MarximusMG,
I actually found the answer in another thread, but I don’t remember where it is to direct you to it. Here is what I did to style the submit button:
#subscribe-blog-blog_subscription-2 input[type=”submit”] {
float: right;
height: 35px;
width: 29%;
background-color: #EA141F;
color: #FFF;
border: none;
}
To get the hover color I am using this:
#subscribe-blog-blog_subscription-2 input[type=”submit”]:hover {
background-color: #364956;
}
And finally the text input box:
#subscribe-blog-blog_subscription-2 input[type=”text”] {
float: left;
height: 32px;
border: none;
width: 65%;
padding-left: 10px;
}
Hope this helps.