Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1400671

    Hallo,
    ich möchte, dass der Text in meinem Widgetmenü oben bündig mit dem Inhalt ist.
    vertical-align funktioniert nicht.

    #1400679

    the ul list items got a padding: .8em 3px

    but before we change that value or shift the ul up – it is easier if you go to the right column with the slider – edit that column and give a padding top to that column of about 18px

    #1400685

    maybe you decide to show the list in responsive case this way:

    @media only screen and (max-width:767px) {
      #top .widget_nav_menu ul {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items:  baseline;
      }
      
      #top .widget_nav_menu ul > li {
        padding: 0 5px !important
      }
    
      #top .content .flex_column .widget_nav_menu li:first-child {
        border-top-width: 0px !important; 
      }
    
      #top .sidebar_left .widget_nav_menu ul:first-child > .current-menu-ancestor, 
      #top .sidebar_left .widget_nav_menu ul:first-child > .current-menu-item, 
      #top .sidebar_left .widget_nav_menu ul:first-child > .current_page_item {
        top: 0px !important; 
      }
    }

    if you must have this more specific to that list – give a custom class to it and edit the code above.

    #1400692

    Hallo vielen Dank,
    ich habe den Weg gewählt, die rechte Spalte 18 px tiefer zu setzen.

    #1400833

    ja – aber schau dir bitte auch den responsive case an – oder willst du dieses Layout beibehalten:

    deshalb der andere code.

    #1400867

    Ja, das habe ich im Blick.
    Es soll eine klare Typografie sein.
    In der mobilen Darstellung wird es eine andere Menüführung geben

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