Home Forums WoodMart support forum Category SUB-MENU width

Category SUB-MENU width

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #281244

    Cready
    Participant

    Hello, After the last update, the subcategory menu shows one height. I have set Full-width but still lowered in height. Can you help me ?

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

    Artem Temos
    Keymaster

    Hello,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue. We will fix this in our next update as well.

    .wd-dropdown-menu.wd-design-sized > .container > .wd-sub-menu:not(.row),
    .wd-dropdown-menu.wd-design-full-width > .container > .wd-sub-menu:not(.row) {
    display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .wd-dropdown-menu.wd-design-sized > .container > .wd-sub-menu:not(.row) > li,
    .wd-dropdown-menu.wd-design-full-width > .container > .wd-sub-menu:not(.row) > li {
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
    		-ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    Kind Regards

    #282169

    Cready
    Participant

    The visual is messy after the code you wrote me. Paragraph Not protected.
    Please send me the code correctly.

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

    Artem Temos
    Keymaster

    Hello,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    .wd-dropdown-menu.wd-design-sized .wd-sub-menu>li, 
    .wd-dropdown-menu.wd-design-full-width .wd-sub-menu>li {
        max-width: 200px;
    }

    Kind Regards

    #282492

    Cready
    Participant

    Corrected, but there is another nuance, I want all the categories to be written on one line and how can I limit it to not dragging it to another line?

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

    Artem Temos
    Keymaster

    Sorry, but it is not possible to do this because all categories have different numbers of characters. Now it works in the same way as before the update.

    #282653

    Cready
    Participant

    Ok thank you

    #282654

    Artem Temos
    Keymaster

    You are welcome! Let us know if you have any questions.

Tagged: ,

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

The topic ‘Category SUB-MENU width’ is closed to new replies.