• Hello, I’m trying to change the color of one item on my mobile menu (e.g. inscription) but I can’t find the right way to do with a custom css.

    I’ve tried this css :

    .wp-block-navigation__responsive-container .ins {
    color: #b6d129;
    }

    but it ain’t working. If I remove the class .ins attributed to the last item “Inscription” all the item have the green color though.

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

Viewing 1 replies (of 1 total)
  • Hi @vcab,

    You can always put any custom css inside a media query to have it only apply on certain screen sizes, like mobile devices. As an example, you can do this, which will only make your custom css affect devices with width of less than 600px (most mobile devices)

    @media(max-width: 600px) {
    // any custom css code here
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.