Forum Discussion

Myko_P's avatar
Myko_P
Expert
7 years ago

User dropdown menu on XS and SM screens (responsive skin)

Hi, We are preparing our community website to the responsive upgrade. On the stage instance we got responsive skin with some basic styling customizations made but overall pretty close to the default...
  • Parshant's avatar
    Parshant
    7 years ago

    Myko_P,

    Check below css class and rule in your community CSS.

    At screen size upto 991px this css rule hides the user dropdown menu.

    @screen and (max-width: 991px){
    .lia-menu-user-dropdown .lia-menu-user-nav {
    	display: none;
    }
    }

    You have to overide this css to something to like this:

    @screen and (max-width: 991px){
    .lia-menu-user-dropdown .lia-menu-user-nav {
    	display: block;
    }
    }