how hide drop menu

how hide drop menu

by stephane ngov -
Number of replies: 5

Hi all,

I would like hide earlier drop menu ,

Where is the script who is drive with the button close this drop menu



thanks for reply smile

Average of ratings: -
In reply to stephane ngov

Re: how hide drop menu

by Joseph Rézeau -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers Picture of Translators

Please note that this button appears in bootstrap based themes only. It appears and disappears automatically according to the width of the user's window.

It contains the choice of languages menu and a "You are logged in as", a link to the current user's profile and a Log out link.

I find it very useful, even indispensable. Why would you want to "hide" it?

Joseph

In reply to Joseph Rézeau

Re: how hide drop menu

by stephane ngov -

thank joseph smile,

I know is hide to the width,

but with my drop menu, i have à double ligne and would like

find this "width" for the menu minimalise before have à 2 lignes


(désolé de mon anglais très médiocre dead , mais je recherche ou se trouve le calcul de cette

valeur de longueur, sinon il cache le bloc menu qui se trouve au dessous de celui-ci)



In reply to stephane ngov

Re: how hide drop menu

by stephane ngov -

I think i found when the size tiny than 980px (media queries) ,

the menu is minimize, how to increase it ?


In reply to stephane ngov

Re: how hide drop menu

by stephane ngov -

I now view this bug is apprea when we are logged sad

if we are anonyme, the bug isn't here

In reply to stephane ngov

Re: how hide drop menu

by stephane ngov -

I resolve solution,

i hide "connecte to user" width media query


 
    @media screen and (max-width:1200px)
    {
       
            .logininfo{
            display: none;
      }
    }