Problem mit css stylesheet: Button Eigenschaften?

sharingan_user

Ordensbruder
ch habe folgendes Problem: Ich habe mir das Wordpress Plugin Secure and Accessible PHP Contact Form
installiert und das Theme Default den Farben meines Blogs angepasst. Allerdings finde ich nicht heraus wo man den Button(Den um zu senden) verändert. Ich hoffe mir kann jemand schnell mal helfen =)

Hier ist der code:
PHP:
/* ==================================================================
    Secure and Accessible PHP Contact Form v.2.0WP FIXED width
     DEFAULT.CSS made by Mike Cherim - http://green-beast.com 
    Designed and built to work with the Default WordPress theme
================================================================== */

#gb_form_div { 
  text-align : left;
  width : 487px;
}


#gb_form {
  text-align : left;
  background-color : #FCF2C1;
 }

#gb_form_div a {
   color : brown;
}

#gb_form_div a:hover, #gb_form_div a:focus, #gb_form_div a:active {
  color : #9A6A3A;
  text-decoration : underline;
}

#gb_form fieldset { 
  border : 0;
  margin-top : 10px;
  margin-left: 2px;
}

#gb_form legend, #gb_form dt { 
  font-weight : bold; 
  color : #9A6A3A;
}

#gb_form legend {
  margin-left : -10px;
  margin-left: 2px;
}

#gb_form legend#mainlegend { 
  font-size : 1.2em;
  color : #9A6A3A;
  margin-left : -10px;
  margin-left: 2px;
}

#gb_form legend#mainlegend small { 
  font-size : .7em;
  text-transform : uppercase;
}

#gb_form_div .main_formhead {
  font-size : 1.4em;
}

#gb_form label { 
  color : #9A6A3A; 
  margin-top : 5px;
}

#gb_form input.short, #gb_form input.med, #gb_form select.med, #gb_form textarea.textbox { 
  font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
  padding : 4px; 
  background-color : #fff;
  line-height : 1.5em;
  width : 300px;
  border: 1px #9A6A3A solid;
  color: #333333;
}

#gb_form input.short {
  width : 45px;
}

#gb_form textarea.textbox {
  width : 400px;
}

#gb_form select.med {
  width : 250px;
}

#gb_form input.checkbox {
  padding : 0; 
  margin-left: 2px;
}

#gb_form label input.checkbox {
  margin : 0;
  margin-left: 2px;
}

* html input.button {  
  padding : 4px; 
  background-color : #9A6A3A;
  border: 1px #9A6A3A solid;
  color: #333333;
}


/* NOTE: .hover and .focus classes IE JS */
#gb_form input.short:hover, #gb_form input.short:hover, 
#gb_form input.med:hover, #gb_form input.med:focus, 
#gb_form select.med:hover, #gb_form select.med:focus, 
#gb_form textarea.textbox:hover, #gb_form textarea.textbox:focus, 
#gb_form input.short.hover, #gb_form input.short.focus,
#gb_form input.med.hover, #gb_form input.med.focus,  
#gb_form select.med.hover, #gb_form select.med.focus, 
#gb_form textarea.textbox.hover, #gb_form textarea.textbox.focus { 

border:1px solid #9A6A3A;
  color:#333333; 
  padding : 4px; 
  background-color : #fff;
}

input.button {
  margin-top : 10px;
  margin-left: 2px;
  padding : 4px; 
  background-color : #9A6A3A;
  border: 1px #9A6A3A solid;
  color: #333333;
}

span.error, span.success, #gb_form_div dt { 
  color : #9A6A3A;  
  font-weight : bold; 
}

#gb_form_div dt small, span.success, dl#result_dl_blockq dt {
  color : green;
}

small.whythis, small.whythis a { 
  font-size : .9em; 
}

#gb_form small.whythis a span { 
  font-size : .9em;
  color : #FCF2C1;
  padding : 0 3px 0 3px;
}

#gb_form small.whythis a:hover, #gb_form small.whythis a:focus, #gb_form small.whythis a:active { 
  text-decoration : none;
  color : #9A6A3A;
}

#gb_form small.whythis a:hover span, #gb_form small.whythis a:focus span, #gb_form small.whythis a:active span { 
 border : 1px solid #000;  
background-color : yellow;
  color : #9A6A3A;
  font-weight : bold;
}

p.creditline small { 
  display : block;
  text-align : right;
  margin : 5px 0;
  font-size : .7em;
  letter-spacing : .0001em;
  color : #9A6A3A;
}

/* NOTE: .abbr class is for IE */
.abbr { 
  cursor : help; 
  border-bottom : 1px dashed #999;
}

dl#result_dl_blockq blockquote {
  margin-left : 0;
}

dl#result_dl_blockq blockquote p cite {
  display : block;
  text-align : right;
}

#gb_form_div span.items {
  font-weight : bold;
  color : #9A6A3A;
}

/* End DEFAULT CSS */
So sieht der Button momentan aus: http://vannagh.va.funpic.de/?page_id=115

und so soll der aussehen:

http://vannagh.va.funpic.de/?page_id=62

Ich hoffe mir kann jemand den so machen wie es im meinem Gästebuch aussieht. Am besten ihr zeigt mir wo ich die eigenschaften bzw. Farbe etc. einsetzen muss ich habe es probiert aber es zeigt mir nichts an!

Hoffe auf ne schnelle Antowrt :onegai:
 

pery

♪音楽♫ (√ιק)™
VIP
Du hast da

PHP:
input.button { 
  margin-top : 10px; 
  margin-left: 2px; 
  padding : 4px;  
  background-color : #9A6A3A; 
  border: 1px #9A6A3A solid; 
  color: #333333; 
}
muss aber

PHP:
input.button {
  font-weight: bold;
  margin-top: 10px;
  margin-left: 2px;
  padding: 3px 4px; 
  background-color: #9A6A3A;
  border: 1px #fff solid;
  color: #fff;
} 

input.button:hover {
  font-weight: bold;
  margin-top: 10px;
  margin-left: 2px;
  padding: 3px 4px; 
  background-color : #fff;
  border: 1px #9A6A3A solid;
  color: #9A6A3A;
}
sein
 
Oben