CSS code in order to hide a page from my desktop

Hi can you please help me with the CSS code in order to hide the FAQ page from my desktop (but keep on mobile), because I cant find how to do it. Thank you

URL: https://matibrnd.com/

Pass: biangu

Hi @MT27

Please add this code to theme.liquid file, after in Online store > Themes > Edit code to do that


Hello @MT27

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (min-width: 990px){ .header .header__inline-menu .list-menu li:last-child { display: none !important; } }

- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.