Myko_P
7 years agoExpert
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...
- 7 years ago
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; } }