• Resolved Pattern Storm Designs

    (@pattern-storm-designs)


    Hello. Is it possible to not make the menu sticky when in mobile view? Currently the sticky menu works 100%, but on my mobile view, it sticks the entire screen and cannot see anything. Thank you in advance for any assistance or guidance.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    I got it solved! I asked ChatGPT for help. Here is the code he provided to insert in the custom css part:

    @media (min-width: 768px) {
    .nicdark_section.nicdark_bg_orange.nicdark_custom_bg {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff; /* Or match your header background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    }

    @media (max-width: 767px) {
    .nicdark_section.nicdark_bg_orange.nicdark_custom_bg {
    position: static !important;
    box-shadow: none !important;
    }
    }

Viewing 1 replies (of 1 total)

The topic ‘Mobile View’ is closed to new replies.