Force display not working on Restaurant Menu list widget?

nikolaj
nikolaj Member Posts: 4
edited August 2023 in Ask a Question

As the question says, why does the attribute forcedisplay=true not work anymore when viewing a Restaurant Menu List widget on mobile?

I want to display the entire menu instead of having to click an arrow to show the next items on the menu list..

Does anyone have a workaround to force the entire list to show like on computer/tablet version? 😊

Best regards,

Nikolaj

Best Answer

  • Thomas_Connery
    Thomas_Connery Member Posts: 226 MVP
    Answer ✓

    @nikolaj You can try the below solution (code provided). In the mobile view, update the Device Specific CSS with the below code -- Remember to update your div.u_######## so it matchs your widget's ID. I have added before and after images of the code which should help also.

    Before:

    After:


    Code Example:

    *#dm *.dmBody div.u_1588141415 .menuCategory1Cols,

     *#dm *.dmBody div.u_1588141415 .dmRestaurantMenu .menuCategory2Cols { display:block !important; }

    *#dm *.dmBody div.u_1588141415 .menuCatArrow { display:none !important; }

Answers