Closed (outdated)
Project:
Views Infinite Scroll
Version:
7.x-1.1
Component:
User interface
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
29 May 2012 at 08:30 UTC
Updated:
27 Mar 2020 at 20:07 UTC
Jump to comment: Most recent
Comments
Comment #1
ashish bairagi commentedAlso when I enable more links in views pagination part, it works well. Does anybody has the same issue or is there something wrong with my approach, please let me how to solve it?
Comment #2
JonathanHindi commentedSame here. Firefox 13
Comment #3
Ciraxis commentedfirefox 14.0.1 is the same but if you didnt't log in auto scrolls works fine
Comment #4
mustanggb commentedCannot reproduce in 14.0 or 15.0, both logged in and logged out.
Comment #5
Ciraxis commentednow with a different pager id everythings works fine
Comment #6
hdennen commentedCould be a CSS issue with your layout. Floated elements can confuzzle ajax about where the bottom of the paged content is.
.view-content {
float:left; //necessary if you've got floated fields/rows
margin-bottom:1px; //this is necessary so ajax knows you're at the bottom of the page (if your views rows are floated)
}
#views_infinite_scroll-ajax-loader {
float:left; //puts loader div below view-content
width:100%; //allows centering
margin-bottom:10px; //just so it's not on the browser baseline
}
#views_infinite_scroll-ajax-loader img {
width: auto; //my images are 100% for responsive design. this makes my loader .gif it's actual size
}
That sorted it for me.
Comment #7
ashish bairagi commentedwill try this fix.
Comment #8
honza pobořil commented