Home Forums WoodMart support forum Dropdown Menu size is varying on all screen sizes after new Woodmart update.

Dropdown Menu size is varying on all screen sizes after new Woodmart update.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #720252

    jzaghasiddiqui
    Participant

    Hi Support,

    My site’s Dropdown Menu size is varying on all screen sizes after new Woodmart update. Please check website link.

    Attachments:
    You must be logged in to view attached files.
    #720306

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Sorry to hear about the inconvenience. Kindly, please share your Site WP-ADMIN Login details in the Private Content field so that we can check this concern on your Site and help you out accordingly.

    Best Regards

    #720309

    jzaghasiddiqui
    Participant

    I have informed in previous message that I cannot share login details due to client’s restriction. You can visit my website and share something accordingly.

    #720328

    Serg Sokhatskyi
    Keymaster
    Xtemos team

    The Aside menu height is currently locked at 380px, as defined in your dropdown height option: https://monosnap.ai/file/1c6BWh0bupns7Nl3iuWLBZzKe4aRkt. Consequently, the dropdown maintains this fixed height across all screen widths.

    The core issue is that your content reflows differently depending on the screen size. Since the dropdown spans the full width of the screen, the content inside it adjusts its height proportionally. A fixed height of 380px is often insufficient or misaligned for this dynamic content.

    We have not made any changes to the dropdowns in the recent update, and our theme does not include native settings to adjust dropdown height based on screen width. Could you please share how your site looked before this update, specifically when the menu display met your requirements? It is possible that they were not set to full-width, or there may have been custom code in place to handle the height dynamically.

    If you are unable to provide a reference to the previous version and cannot adjust your content to fit the full-width sidebar dropdown, we can provide you with custom CSS to dynamically adjust the dropdown height based on the device’s screen size.

    You can use the following custom code as a pattern to proportionally adjust the dropdown height to match your content, which tends to expand as the screen narrows. Please add this code to the Custom CSS area in your Theme Settings:

    @media (max-width: 1600px) {
    .wd .wd-dropdown-menu.wd-design-aside {
    	--wd-dropdown-height: 500px;
    }
    }
    
    @media (max-width: 1400px) {
    .wd .wd-dropdown-menu.wd-design-aside {
    	--wd-dropdown-height: 600px;
    }
    }

    Note: --wd-dropdown-height defines the height of the dropdown, and max-width: 1600px specifies the screen width at which this height will be applied.

    Kind Regards

Viewing 4 posts - 1 through 4 (of 4 total)