Hello. I used the CSS below as part of the solution. Everything works great when you click on a link under WordPress Services. The issue is that after you click on that first link, clicking on any additional links doesn’t work.
.grid-row-scrollable {
position: fixed !important
}
Thank you,
Ryan
Hey accurIT,
Please, remove this code and we will check it again.
Best regards,
John Torvik
Why would I remove the code, when that’s the solution that got me to make it work thus far? If it’s the wrong solution, that’s what support is for. You were given credentials so I’m a little baffled in your approach.
Hi,
Please add a custom Section ID to the grid element containing the fixed navigation (e.g “custom-grid”) then add the following css code.
#custom-grid {
position: relative;
z-index: 1000;
}
Best regards,
Ismael
This code makes the element scroll. The element needs to be fixed. If you look at my request, my issue is related to linking/anchors.
Please view the page to see what’s going on.
Thanks!
Hi,
Did you even try it? I’m referring to the grid element containing the fixed navigation. The navigation is still “fixed” or “sticky” but you have to set the z-index property of the parent container (the grid element in this case) so that the succeeding sections will not cover the fixed navigation.
Best regards,
Ismael
Yes, I tried it, Again the issue is with the anchors breaking…as in NOT working. If you visit the page, click an anchor and then try to click another…the links do not work.
Fixed with the below. This ticket was not handled very well, folks.
.grid-row-scrollable {
position: fixed !important;
z-index: 10 !important;
}