Form display break in firefox browser

Hi,

Our embedded form look break in FF browser. I tested the browser with IE9,chrome, safari and opera all look ok.

Could you advise on how I can go about fixing it. thanks

Please view below link in FF. I am using FF version 14

 

http://www.novotech.com.sg/acepro-registration-form/

 


Attachment:
bad display in FF

It looks like you need to change your styling.

Using firebug, I came up with this:

..entry {
clear: both;
}

Try adding that to your CSS.

Like Robert mentioned, it looks like something needs to be done with your .entry class. It looks to me like there are some floating issues.

Adding the following CSS to your theme's style.css file (or wherever your theme recommends making CSS changes) should resolve the issue:

.entry {
clear: both;
}

thank you, it works.

Topic closed.