Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1471509

    Bonjour,

    Je souhaite créer 3 niveaux de menu est ce possible ? voir le l image dans la partie privée
    Au premier niveau voir au dessus de l’en tête:
    – un lien pour site Français et anglais
    – des liens pour des pages génériques

    Ensuite le logo de l’entreprise à Gauche puis 2 lignes de 5 menus pouvant être déroulants.

    Peut être dois je poser une seconde question ou déjà présente sur le support mais comment créé t on le site en 2 langues différentes le plus simplement possible ?
    Cordialement,

    #1471511

    Hey jccardaillac,
    First ensure that your menu screen options css classes are enabled:
    Screen Shot 2024 11 17 at 2.13.55 PM
    then add a new custom link menu item to the middle of your menu items and add the class menu-row-separator
    Screen Shot 2024 11 17 at 2.21.05 PM
    then add this css to your Quick CSS in the theme options:

    @media only screen and (min-width: 768px) { 
    .menu-row-separator {
      display: block;
      clear: both;
      height: 0;
      padding: 0;
    }
    #avia-menu > li, #avia-menu > li > a {
    	height: 47px !important;
    	line-height: 40px !important;
    }
    }
    .menu-row-separator a {
      display: none !important;
      line-height: 0;
    }

    this is the expected results:
    Screen Shot 2024 11 17 at 2.23.38 PM
    adjust the menu item heights to suit your header height.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.