Conversation
supportHello. 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]
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; } }
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; } }