Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author manuelmasia

    (@manuelmasia)

    Hi,

    I’m afraid it is because of the properties of the container and the fact the elements on PixGridder are floating, so you should try one of these workarounds. They are all right, but I don’t know if or which of them compromises the right working of your site, so test them if you can. Add to your stylesheet:

    .entry-content {
      overflow: hidden;
    }
    

    or

    .entry-content {
      float: left;
    }
    

    or

    .entry-content:after, .entry-content:before {
      content: '';
      display: table;
    }
    .entry-content:after {
      clear: both;
    }
    

    Let me know. Manuel ??

    Plugin Author manuelmasia

    (@manuelmasia)

    I guess you have resolved ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘too much space between top of page and begining of the grid’ is closed to new replies.