The css to make the form work with a button
Code:
.button2 {
background:transparent url(http://www.creativemetaphor.com/clients/iris/scion_site/images/bg_button_a.gif) no-repeat scroll right top;
border:0pt none;
color:#FFFFFF;
float:right;
font-family:TREBUCHET MS,Verdana,Arial,Helvetica,sans-serif;
font-size:15px;
font-weight:bold;
height:24px;
margin:0pt 10px 0pt 0pt;
text-decoration:none;
}
.button2 span {
background:transparent url(http://www.creativemetaphor.com/clients/iris/scion_site/images/bg_button_span.gif) no-repeat scroll left top;
line-height:14px;
padding:3px 0px 6px 10px;
}
.button2:hover {
background-position: bottom right;
color: #fff;
outline: none; /* hide dotted outline in Firefox */
}
.button2:hover span {
background-position: bottom left;
padding: 3px 0px 1px 10px;
}
and the button tag should look like
Code:
<button type="submit" class="button2"><span>Send Feedback</span></button>
Bookmarks