Forums
Home / Theme: Twenty Fourteen / Fixed position on sidebar
(@gspiliog)
10 years, 10 months ago
Can i have sidebar position fixed and how to do it?
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Did you try using fixed position in CSS?
#secondary { position: fixed; left: 0; top: 0; margin: 0; }
You probably want to do that in a media query just for desktop
it worked. Thanks