QUICK NEWS

{NEW} - A new css video is up.

{OLD} - New video courtesy of Skhilled, Thanks for posting it up.

Video of the moment:


Internal Links

SMF Sites

Quick Info

.dropmenu Sizing Issues

Started by Skhilled, Dec 10, 2022, 11:31 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

Skhilled

How can I change the height of the .dropmenu for desktop without changing the size of the mobile menu? Whenever I change the height of .dropmenu in index.css it also changes the size of it in responsive.css although I've added a .dropmenu with different settings in responsive.css.

Fixed! I've changed the following in responsive.css:

#mobile_user_menu .dropmenu, div[id^="mobile_generic_menu_"] .generic_menu {
  display: block; 
}

To:
#mobile_user_menu .dropmenu, div[id^="mobile_generic_menu_"] .generic_menu {
  display: block;
  height: auto;
}