• Hi, for this site, there are three submenu items under “Shop”.

    How can I align the sub menu items to have the same paidding as the main items?

    Also, using css could I set the sub menu items to look less prominent? Like font-style=regular/thin/etc ?

    I really wish we had collapsible menus for this theme ??

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Moderator Jan Mc Kell

    (@janmtm)

    Hi @rnmartinez !

    It sounds like you are wanting to center your submenu container as well as the submenu items beneath it’s parent container, yes ?

    You could add a class to the submenu items, from within the Editor, then style them using the ‘Additional CSS’.

    In Twenty Twenty Three, the submenu only has an Editor style option for the typography size, so you can use CSS instead, for altering the font’s appearance.

    The CSS I tested for centering the submenu container and items are to add a class, for example ‘submenu’ to each submenu item, then add the CSS below:

    .submenu {
    margin: 0 auto;
    }

    The font styles that you want to use on your submenu items can be added there. (Note that the class name I’ve used is an example, and you’ll need to style this on your site based on the class name you add in the submenu items Block settings.)

    Then, you can also add to ‘Additional CSS’ the following CSS, which should center the container for the submenu items.

    .wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container {
    margin: 0 auto;
    left: -50%;
    }

    The articles linked below should help you with finding how to add a class to a Block, and where to find ‘Additional CSS’ for adding your CSS code.

    https://www.ads-software.com/documentation/article/styles-overview/#per-block-css

    https://www.ads-software.com/documentation/article/styles-overview/#applying-custom-css

    Hope this helps!

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.