0

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:

http://jsfiddle.net/T7UtM/

Ian Hazzard
  • 7,661
  • 7
  • 34
  • 60

1 Answers1

1

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.

Jon Snow
  • 3,682
  • 4
  • 30
  • 51