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/





August 21, 2012 at 7:46 am
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.
August 21, 2012 at 2:12 pm
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;
}
August 21, 2012 at 7:45 pm
thank you, it works.
Topic closed.