Joseph C

Results 131 comments of Joseph C

Awesome! Thank you very much! On the test.html page in the project root, the header and footer text is shifting to the right when fixed. I need to correct that...

This is such great work! Thank you! I have taken another look, but don't have the time to debug the shift. I will come back to it again soon.

Hi Michael, Sorry for the delayed reply and thank you for the compliments :) Both the limit and marginTop arguments take a function. When dynamic content is loaded after the...

I am wondering if the dynamic content is changing the position of the target and, therefore, the position of spacer that keeps the content underneath in place. Try making the...

Very cool! I like what you are trying to accomplish. The marginTop and limit properties can also be functions. This will recalculate positions every time they are called instead of...

That is a pretty complex layout. I will have to look at this when I have more time. A quick note, "this" probably won't work in a function block passed...

@M1kn Create a marker element, I called mine .footer-marker, placed just above the .footer. Then, use this in the footer's limit function. ``` limit: function() { return $('.footer-marker').offset().top; } ```...

@FelixDampf The window resize handler is failing due to registerNav() not being visible to it. I moved this into the document ready function so it can see it. That doesn't...