Making a contact form with css and html. Here's what I'm trying to do.
margin-left:auto;margin-right:auto
to get my submit button centered. Here's my code:
Making a contact form with css and html. Here's what I'm trying to do.
margin-left:auto;margin-right:auto
to get my submit button centered. Here's my code:
In your case this will center the button:
.ss-item.ss-navigate{
width:200px;
margin:auto;
}
Fiddle: http://jsfiddle.net/T7UtM/2/
However please try to revise your markup, it's wrong on too many levels.