Submenu does not display when mounted on the server

-3

Good day, I have a problem because when mounting the application on the server and doing the routine tests of the changes that were made I realized that the submenu that in theory should be displayed, does not, but if I execute the project if you show them they know What is it due? I already tried it in several browsers, delete everything that is stored in memory and still remains unseen. The app is made in asp mvc, has the template by

App mounted on the server

App running in local from VB2017

Greetings.

Part of the html

<li class="dropdown-submenu">
                                    <a class=" dropdown-toggle">Opeacion</a>
                                    <ul class="dropdown-menu">
                                        <li>@Html.ActionLink("Cambio de Precio Articulos", "CambioPrecioArticulos", "Adquisiciones")</li>
                                        <li>@Html.ActionLink("Carga masiva de Articulos", "Index", "Adquisiciones")</li>
                                    </ul>
                                </li>

CSS added for the submenu

/*
    Parte agregada
*/
.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
    }

Update I just had to add the CSS reference

    
asked by andres martinez 23.10.2018 в 22:16
source

1 answer

0

Update You only have to add the CSS reference

    
answered by 25.10.2018 в 20:00