Currently my category list is fixed and as the user scrolls down the page the category list ultimately becomes hidden, as it's way at the top of the page.
I'm trying to get the listed to move down as the view moves down the page. So that at any moment they can look to their right and see the category list.
I think just using the FIXED would work. So I guess then, I would target the div around the CATEGORY and apply the 'FIXED' to it? Correct? THANKS GUYS!!
Hi all, thanks in advance. Here's the site I'm working on: http://blog.simeonhendrix.com
Currently my category list is fixed and as the user scrolls down the page the category list ultimately becomes hidden, as it's way at the top of the page.
I'm trying to get the listed to move down as the view moves down the page. So that at any moment they can look to their right and see the category list.
Thanks for any and all feedback!
Ironically do exactly as you described. Use fixed position.
edit: you can do it with fixed but i thought you want something smoother
I'm not really sure how to do this but I guess it's done with JavaScript/jQuery so you can google something with those keywords in mind
I think just using the FIXED would work. So I guess then, I would target the div around the CATEGORY and apply the 'FIXED' to it? Correct? THANKS GUYS!!
Yeap, you have your
Just add position: fixed; to it and it'll works just fine.
Awesome!! Thanks all for the help!!