XF 2.2 Navigation bar buttons

Abraham54

Well-known member
I have a little problem with the button on the navigation bar.

If i click on a button, it is rounded:

Ronde knop 1.webp

If I scroll a little down, then this happens:

Ronde knop 2.webp


How to get the button stays round when scrolling downwards?
 
Solution
I couldn't find the style on your website but judging from it, you have the radius set to 0 for the sticky while it's 6px normally.

So try to remove the 0px from the sticky radius.
Code:
.p-navSticky.is-sticky .p-nav .p-nav-list .p-navEl.is-selected {
    border-radius: 0;
}
I couldn't find the style on your website but judging from it, you have the radius set to 0 for the sticky while it's 6px normally.

So try to remove the 0px from the sticky radius.
Code:
.p-navSticky.is-sticky .p-nav .p-nav-list .p-navEl.is-selected {
    border-radius: 0;
}
 
Solution
Back
Top Bottom