The content does not overflow on the X axis, because it just jumps to a new line. You probably need to make the content stay on the same line with:
.featured-category ul { white-space: nowrap; // add } .featured-category ul li { display: inline-block; // add /*float: left;*/ // remove }
source share