11 lines
314 B
SCSS
11 lines
314 B
SCSS
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
|
|
.infinite-scroll .posts-navigation,
|
|
.infinite-scroll.neverending .site-footer {
|
|
display: none;
|
|
}
|
|
|
|
/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
|
|
.infinity-end.neverending .site-footer {
|
|
display: block;
|
|
}
|