Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #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,
    Ryan

    #857279

    Hey accurIT,

    Please, remove this code and we will check it again.

    Best regards,
    John Torvik

    #857282

    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.

    #857838

    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

    #859625

    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!

    #859978

    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

    #860280

    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.

    #860364

    Fixed with the below. This ticket was not handled very well, folks.
    .grid-row-scrollable {
    position: fixed !important;
    z-index: 10 !important;
    }

    #860443

    Hi,

    Alright. Glad that you figured out. Let us know if you need anything else.

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.