Okay
  Public Ticket #1090026
Mobile menu, opacity process circles
Closed

Comments

  •  2
    phil2gold started the conversation

    Hi, how can I change the width when the website changes to mobile menu? Because now when the screen is a little smaller then the menu jumps into the next line which does not look good. Maybe the easiest solution is to make it change earlier when decreasing the window?

    How can I change the opacity of the process circles?

    Thanks

  •  2,010
    Ocean replied

    Hi,

    For menu, you can add code css

    @media (max-width: 1199px) and (min-width: 993px){
        header div#logo a img {
            max-width: 200px;
            max-height: 60px;
        }
        nav ul#mainmenu{
            padding-left: 0;
        }
        #mainmenu a{
            font-size:10px;
        }
    }
    

    Change opacity

    .de_tab {
        opacity: .8;
    }
    


  •  2
    phil2gold replied

    Thanks, great support