x

Removing huge space between submenu items parent and child lists

This is regarding my weebly website apnishala.org

How do I remove the space between the submenu item and its child submenu item?? I've tried margin adjustments, "position" adjustments in CSS but cannot figure it out. Please help. Thank you.

677 Views
Message 1 of 4
Report
1 Best Answer

Best Answer

@swetr Looks like the real issue is with a width constraint on the first child menu item links. The grandchild menu is correctly spaced 200px to the right of the child menu but the child menu links have a width constraint of 140px. You'll want to disable that constraint. Modify the menu link id class below (width constraint should be removed or commented out as I've indicated in red text below):

#wsite-menus .wsite-menu li a {
    margin: 0px;
    color: #000;
    font-size: 10px;
    background: #fff;
    /* max-width: 140px; */
    border: none;
    border-bottom: 1px solid #ffe500;
}

This will produce the following seamless effect on the apparent distance between your child menu and grandchild menu:

image

View Best Answer >

664 Views
Message 5 of 4
Report
3 REPLIES 3
Square

Thanks for you post, @swetr. @PaulMathews and @seicolegwr, do you have any suggestions on reducing or removing some of the padding/margin between the submenu items and child items?

665 Views
Message 5 of 4
Report

Best Answer

@swetr Looks like the real issue is with a width constraint on the first child menu item links. The grandchild menu is correctly spaced 200px to the right of the child menu but the child menu links have a width constraint of 140px. You'll want to disable that constraint. Modify the menu link id class below (width constraint should be removed or commented out as I've indicated in red text below):

#wsite-menus .wsite-menu li a {
    margin: 0px;
    color: #000;
    font-size: 10px;
    background: #fff;
    /* max-width: 140px; */
    border: none;
    border-bottom: 1px solid #ffe500;
}

This will produce the following seamless effect on the apparent distance between your child menu and grandchild menu:

image

665 Views
Message 5 of 4
Report

Of course!! Thank you so much - it worked!!!

654 Views
Message 5 of 4
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.