user3137580
user3137580

Reputation: 13

Bootstrap form not displaying properly in Firefox only

I've built a custom form using Bootstrap and have been unsuccessful in making it show up properly in Firefox - it works in every other browser. For some reason its kicking the radio buttons off the edge of the page and won't display them within the div I set for them. The strange thing is the actual form works - I can input my selections and it does what it is supposed to do. It just isn't in the right spot.

The form can be viewed here (on Firefox) - http://goo.gl/cWXPfk

Upvotes: 0

Views: 321

Answers (1)

Pointy
Pointy

Reputation: 413757

You've got this in that "span8" container below the "Contact Us" header:

<div class="span8">
  <div id="successmessage"> </div>
</div>

That's confusing the layout engine. I don't think you want that element to have the "span8" class; it's already inside a "span8" container.

If you take the class off that element, the layout works.

Upvotes: 1

Related Questions