Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1222966

    Hello Kriesi Team,
    i would like to set the logo in the middle and the burger menu on the right of it in desktop mode. Unfortunately, the theme only offers me the option “Logo centered” and the menu below or above it?
    I also want the logo to change in sticky mode. How can I do that?

    Thank you for the effort in advance,
    With best regards from Cologne

    #1223120

    Hey SGehmlich,

    Could you please attach a mockup of what you’re trying to achieve?

    Best regards,
    Victoria

    #1223330

    Hey Victoria,
    thanks for the quick response. Here are 3 examples of how I imagine this to be. It differs a little from what I asked yesterday, but the principle remains the same!

    Sorry, I do not know how to attach files here, so here is a link to the files

    https://we.tl/t-TSyz0opiSo

    Thanks for the effort
    Best regards

    #1223823

    Hi SGehmlich,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1223830
    This reply has been marked as private.
    #1223881

    if you have : logo center, menu below
    and : menu show as burger always
    and : show search in menu
    then we are nearby:

    after that : you can see on my test-page for that: https://webers-testseite.de/cynthia/
    a little quick css:

    @media only screen and (min-width: 990px) {
      .html_header_top.html_logo_center #header_main_alternate .main_menu #avia-menu {
          display: inline-flex !important;
          width: 100%;
          flex-flow: row nowrap;
          justify-content: space-between;
      }
    
      .html_header_top #top .av_header_stretch .container.av-logo-container {
        width: 60%;
        z-index: 101;
      }
    
      #header_main_alternate {
        margin-top: -60px;
        border: none;
        position: relative;
        min-height: 58px;
      }
      
      .html_header_top.html_header_sticky.html_large.html_bottom_nav_header #main {
        padding-top: 116px;
       }
    }
    
    @media only screen and (max-width: 989px) { 
      .responsive.html_header_top #top .av_header_stretch .container .inner-container .logo {
        width: 50% !important;
        z-index: 101;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
      }
      .main_menu {
        width: 100% !important;
      }
      .av-main-nav-wrap {
        width: 100% !important;
      }
      .av-main-nav-wrap > ul {
        display: inline-flex !important;
        width: 100% !important;
        flex-flow: row nowrap;
        justify-content: space-between;
      }
      .responsive #top #wrap_all #header .container {
        width: 95% !important;
        max-width: 95% !important;
      }
    }

    If you like to have the burger symbol on the left and the search on the right you only had to change the flex-flow to:
    flex-flow: row-reverse nowrap;

    if you like to have the burger slide out from the left then – please do a search this is often asked.

    #1223882

    because i do not see your page – you had to adjust yourself the padding-top, min-height, margin-top etc to your settings
    It works with my logo best because it is set to shrink to the center – it is a svg file – and you can set it in the svg code to shrink this way.

    #1224064

    see now: https://webers-testseite.de/cynthia/

    By the way working on that – i recognized that it might be more easy to use the normal header style: logo: left – menu right !

    #1225131

    Hi SGehmlich,

    Did you get it working with Guenni007’s help or do you need more help?

    Best regards,
    Victoria

    #1225245

    Hi Victoria,
    thank you for asking, the Guenni007 and I are in exchange and are just clarifying the last changes.

    Best regards
    SGehmlich

    #1225481

    Hi SGehmlich,

    Thanks for the update, just let us know if you should need any further help from us.

    Best regards,
    Rikard

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