Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #863134

    bryan1976
    Participant

    Hi,

    My domain is here – http://dev.theaudiobarn.co.uk

    I have tried some custom CSS from this forum without any luck. Latest wordpress/theme x/cornerstone theme is Icon.

    I would like 2 things please:

    1) The sub menu items to be justified central including the title. Please see attached screenshot of what I wish to achieve.

    2) Can I remove the double down arrow next to top level menu items which indicated sub menu items are present?

    Many thanks,

    Bryan

    #863649

    Thai
    Moderator

    Hi Bryan,

    Please add the following CSS under Customizer > Custom > Edit Global CSS:

    .x-navbar .desktop .x-nav li>a>span:after {
        display: none;
    }
    .x-navbar .desktop .sub-menu {
        left: 50%;
        margin-left: -100px;
        text-align: center;
    }

    Hope it helps 🙂

    #863676

    bryan1976
    Participant

    Hi,

    This is much better thanks.

    How do i centre the sub menu background itself? Is there a way to adjust the height of where the sub menu begins…I would like a small gap between the breadcrumbs and the start of the submenu drop down.

    Many thanks,

    Bryan

    #864259

    Rad
    Moderator

    Hi there,

    You mean center to its parent menu? Please add this as well, then please change that CSS to this,

    .x-navbar .desktop .x-nav li>a>span:after {
        display: none;
    }
    .masthead-inline .x-navbar .desktop .sub-menu {
        left: -50%;
        right: -50%;
        text-align: center;
    }

    What do you mean by ” small gap between the breadcrumbs and the start of the submenu drop down.” ? Please provide a mockup screenshot.

    Thanks!