Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • Pankaj Sharma Moderator
    #953022

    Hi
    this is because if the style code in your custom theme .
    Go to /purity_iii/local/css/themes/essai/bootstrap.css

    Find below code

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 160px;
        padding: 5px 0;
        margin: 2px 0 0;
        list-style: none;
        font-size: 14px;
        text-align: left;
        background-color: #444444;
        border: 1px solid #444444;
        border-radius: 200px;
        -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
        box-shadow: 0 6px 12px rgba(0,0,0,0.175);
        background-clip: padding-box;
    }

    replace it with

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 160px;
        padding: 5px 0;
        margin: 2px 0 0;
        list-style: none;
        font-size: 14px;
        text-align: left;
        background-color: #444444;
        border: 1px solid #444444;
        border-radius: 0px;
        -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
        box-shadow: 0 6px 12px rgba(0,0,0,0.175);
        background-clip: padding-box;
    }
    vincebuz Friend
    #953405

    Thanks it was exactly that !
    Have a nice day !

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

This topic contains 2 replies, has 2 voices, and was last updated by  vincebuz 7 years, 8 months ago.

The topic ‘Rounded submenu’ is closed to new replies.