-
AuthorPosts
-
September 26, 2017 at 3:06 pm #856959
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,
RyanSeptember 27, 2017 at 5:34 am #857279Hey accurIT,
Please, remove this code and we will check it again.
Best regards,
John TorvikSeptember 27, 2017 at 5:39 am #857282Why 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.
September 28, 2017 at 5:20 am #857838Hi,
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,
IsmaelOctober 3, 2017 at 1:38 pm #859625This 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!
October 4, 2017 at 8:28 am #859978Hi,
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,
IsmaelOctober 4, 2017 at 7:27 pm #860280Yes, 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.
October 5, 2017 at 1:32 am #860364Fixed with the below. This ticket was not handled very well, folks.
.grid-row-scrollable {
position: fixed !important;
z-index: 10 !important;
}October 5, 2017 at 6:28 am #860443 -
AuthorPosts
- You must be logged in to reply to this topic.
