I\'ve got an empty column at the start and can\'t work out why?
-
.clearfix will probably be throwing in a ::before and possible an ::after with display table et all which does not play well with grid layout so..
css:
/* position absolute breaks it free and clear from the grid layout */
ul.inrpager.clearfix::before {
position:absolute;
}
ul.inrpager.clearfix::after {
position:absolute;
}