17 lines
523 B
CSS
17 lines
523 B
CSS
/**
|
|
* Jetpack Infinite Scroll
|
|
*/
|
|
/* Globally hidden elements when Infinite Scroll is supported and in use. */
|
|
.paging-navigation,
|
|
.pagination,
|
|
.woocommerce-pagination,
|
|
ul.products + .storefront-sorting,
|
|
.woocommerce-result-count,
|
|
.infinite-scroll.neverending .site-footer {
|
|
/* Theme Footer (when set to scrolling) */
|
|
display: none; }
|
|
|
|
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
|
|
.infinity-end.neverending .site-footer {
|
|
display: block; }
|