• I have tried several things, but nothing seems to be working.

    All I am trying to do is get the Mobile Nav Menu to be at half opacity (semi transparent) – Im guessing this must be done though CSS since the GO theme only has colors or full transparent as the options.

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

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

    Thanks for reaching out!

    It isn’t possible to edit the mobile menu background color out-of-the-box, but you can add some CSS code which should help.

    Try this:

    @media only screen and (max-width: 768px)?{
    ? #header__navigation?{
    ??? background:?rgba(255,255,255,0.5) !important;
    ??}
    }

    You can change the RGB combination value to the color you’d like, and then change the opacity by tweaking the last number.

    Let me know if this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Go Theme – Mobile Menu Opacity’ is closed to new replies.