Support » Theme: Ohsik » multi-level menu

  • Resolved almcr

    (@almcr)


    different way to do the mobile menu in this theme. I dont think I have seen that method before.

    has anyone converted the menu to a multi-level one?

    Al

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author writegnj

    (@writegnj)

    Are you talking about sub-menu on navigation?
    I did not implement any code for sub-menu since I wanted to have CSS as simple as possible. However, I’m thinking about writing additional code for sub-menu and it will be uploaded soon.

    Theme Author writegnj

    (@writegnj)

    For now, Adding below CSS will do the job. This probably will be added on next version.

    /*Sub Menu Setup
    ------------------------------------------------------------*/
    .menu-item-has-children{
        position: relative;
    }
    .sub-menu{
        position: absolute;
        display: none;
        top: 38px;
        left: 0;
        z-index: 9999;
        background: #ccc;
    }
    .sub-menu li a{
        min-width: 176px;
    }
    .menu-item-has-children:hover > .sub-menu{
        display: block;
    }
    @media only screen and (max-width:768px){
        .sub-menu{ /*Added for submenu*/
            display: block;
            position: static;
            padding: 0 0 0 10px;
        }
    }
    Thread Starter almcr

    (@almcr)

    yes, I am asking about a sub-menu on navigation. I will look out for that update soon.

    in the mean time, I will attempt to do an update to a sub-menu myself.

    Al

    Theme Author writegnj

    (@writegnj)

    Try the CSS code above and let me know if you still have problem with that. Thank you! Mark it as resolved.

    Theme Author writegnj

    (@writegnj)

    Just you know Sub menu CSS added on version 1.6.1 and 1.7 which will be available soon.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘multi-level menu’ is closed to new replies.