html - My Website displays properly in every browser except Firefox -


chrome, safari , opera display website without trouble, though firefox removes top section including menu. center of section entirely removed , replaced white. i'm not @ sure issue is.

any suggestions?

website under development , can found: http://www.jw.potatomou.se/

thanks in advance

your .row has height of 1% , set overflow:hidden. need clear floats them take presentational space. should it:

.row {     height: auto;     margin: 0.5em;     min-height: 1%;     overflow: visible;     padding: 2% 1em 0; }  .row:after {     clear: both;     content: "";     display: table; } 

Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -