Site logo

[Resolved] sticky menu background

Home Forums Support [Resolved] sticky menu background

Home Forums Support sticky menu background

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2492243
    Jusung

    Hello.

    as you can see on the front page,

    I have made the stick menu.

    On the content section, I have made borders.
    When sticky menu passed by the border, the stick menu becomes transparent.

    Can you help to fix this?

    #2492254
    Fernando
    Customer Support

    Hi Jusung,

    Try changing the z-index value in your custom code here:

    .gb-grid-wrapper.gb-grid-wrapper-05a1ec58 > .gb-grid-column:not(:last-of-type):after{
        content: "";
        height: 85%;
        width: 1px;
        position: absolute;
        top: 50%;
        right: 0;
        background-color: #E0E3DA;
        z-index: 100;
        transform:translateY(-50%);
    }

    and here:

    .gb-grid-wrapper.gb-grid-wrapper-05a1ec58:after {
        content: "";
        height: 1px;
        width: 97.7%;
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: #E0E3DA;
        z-index: 100;
    }

    to 2 instead of 100.

    #2492264
    Jusung

    Thank you!

    #2492282
    Fernando
    Customer Support

    You’re welcome, Jusung!

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