Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • Ninja Lead Moderator
    #902732

    Hi,

    Can you give the URL of your site to see this bug? I will help you to check it further.

    Regards

    jreimer Friend
    #902901
    This reply has been marked as private.
    Ninja Lead Moderator
    #903234

    Hi Dan,

    You can apply my CSS style below to fix the problem on your site.

    Create templates/ja_nex_t3/css/custom.css file and add new rule

    .t3-module ul li.dropdown-submenu .dropdown-menu {
        position: static !important;
        display: block !important; 
        border: 0px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .t3-module ul li.dropdown-submenu > a:after {
        display: none !important;   
    }

    Hope it helps

    Regards

    jreimer Friend
    #903345

    Hello,

    It almost worked. I’m just having trouble now with the hover background showing on the side and top of the new section. I tried changing margin’s and padding, but it didn’t seem to fix the problem. Any suggestions?

    Thanks,
    Dan.

    Ninja Lead Moderator
    #903607

    My tweak below will help you out

    Open templates/ja_nex_t3/css/custom.css file and add new CSS style

    .t3-module ul.nav > li > a:hover, .t3-module ul li.dropdown-submenu .dropdown-menu a:hover, .t3-module ul li.dropdown-submenu .dropdown-menu a:focus,.t3-module ul li.dropdown-submenu:hover > a {
        color: #3377bb !important;
        background: transparent !important;
        font-weight: bold;
    }
    jreimer Friend
    #903854

    Very nice. It all looks great.

    Thanks!
    Dan.

    jreimer Friend
    #909720
    This reply has been marked as private.
    Ninja Lead Moderator
    #909903

    This bug will be fixed by add my CSS style below to templates/ja_nex_t3/css/custom.css file

    .t3-module ul li.dropdown-submenu {
        position: inherit !important; 
    }
    
    .t3-module .dropdown-menu li > a {
        white-space: inherit !important;
    }
    jreimer Friend
    #910138
    This reply has been marked as private.
    Ninja Lead Moderator
    #910331

    Try to use this way

    Open templates/ja_nex_t3/css/custom.css file

    find and change

    .t3-module ul li.dropdown-submenu .dropdown-menu {
        position: static !important;
        display: block !important; 
        border: 0px solid #ddd !important;
        box-shadow: none !important;
    }

    to

    .t3-module ul li.dropdown-submenu .dropdown-menu {
        position: static !important;
        display: block !important;
        border: 0px solid #ddd !important;
        box-shadow: none !important;
        float: inherit !important;
    }

    Hope it helps

    jreimer Friend
    #910677

    Worked! Thanks!

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

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

The topic ‘Change menu to show sub sections – Dropline?’ is closed to new replies.