JackieChun Well-known member Dec 5, 2019 #1 I want to disable the sticky navbar in desktop mode but leave it active on mobile. Any suggestions?
Nulumia Well-known member Dec 20, 2019 #2 JackieChun said: I want to disable the sticky navbar in desktop mode but leave it active on mobile. Any suggestions? Click to expand... This can get a little messy with adding CSS/Less as it doesn't exactly play "nicely" with Xenforo default behavior. Though I'm releasing an addon shortly which will add this with full settings, if you're interested. Upvote 0 Downvote
JackieChun said: I want to disable the sticky navbar in desktop mode but leave it active on mobile. Any suggestions? Click to expand... This can get a little messy with adding CSS/Less as it doesn't exactly play "nicely" with Xenforo default behavior. Though I'm releasing an addon shortly which will add this with full settings, if you're interested.
Russ Well-known member Dec 20, 2019 #3 Really some simple CSS should be able to achieve it: Code: @media (min-width: @xf-responsiveWide) { .p-navSticky { position: static !important; }} Unless I'm missing the obvious Upvote 0 Downvote
Really some simple CSS should be able to achieve it: Code: @media (min-width: @xf-responsiveWide) { .p-navSticky { position: static !important; }} Unless I'm missing the obvious
Nulumia Well-known member Dec 20, 2019 #4 Russ said: Unless I'm missing the obvious Click to expand... Nope you are correct, I'm spending too much time in customized code Upvote 0 Downvote
Russ said: Unless I'm missing the obvious Click to expand... Nope you are correct, I'm spending too much time in customized code