0

So my site is the following, when I was opening this in chrome it worked just fine.. the logo on top right is left aligned and at the bottom where it has testimonials it has a 3 column layout. However, when I open this on firefox, the logo is not left aligned (centered) and the three column is now a one line.

My css for the logo looks like this:

.navbar-shopious-color .navbar-inner .nav-title-logo {
    float: left;
    position: absolute;
}

Can anyone tell me why this is not working for firefox?

4

1 回答 1

0

This should fix the logo..

.navbar-shopious-color .navbar-inner .nav-title-logo {
  left: 0;
  position: absolute;
}

And changing the -moz-column-fill to balance should fix the testimonials

.testimony-container {
    -moz-column-count: 3;
    -moz-column-gap: 10px;
    -moz-column-fill: balance;
}
于 2013-09-22T03:50:35.613 回答