Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1346058

    Hi!
    The customer had the idea to make a logo + text and again a logo.
    On the mobile – the logo below the text and again the logo was displayed in this order.
    I hope for help in the matter.

    #1346072

    First of all – please look on top of this forum – this logo is with text. After scrolling the text disapears. And now your customer likes to have besides the text a second logo.

    What kind of header did you choose? Logo left – menu right … shrinking or not ?
    What should happen on scroll – on small screens?
    Do you whish to have on each a different link – or is it for all the same backlink?

    #1346127

    Hi SenjaLp,

    I’m not sure I understand what you need help with. If you should need any further help, then please post a link to your actual site, and let us know exactly what you are looking to change.

    Thanks for helping out @guenni007.

    Best regards,
    Rikard

    #1346206

    Here he clearly depicted
    The site is still in development

    pk
    mobil

    • This reply was modified 2 years, 9 months ago by SenjaLp. Reason: fixed the link to pk
    #1346259

    Hi,

    Thank you for the info.

    You can use widgets to add another logo inside the header area. Please check this documentation for more info.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Or use the avf_logo_final_output filter to adjust the html of the current logo.

    function avf_add_logos($logo) {
      $logo .= '<a class="first-logo" href="/"><img src="http://site.local/wp-content/uploads/2022/03/logo-rivista.jpg"/></a>';
      $logo .= '<a class="second-logo" href="https://site.org"><img src="site.local/wp-content/uploads/2022/03/ordine.jpg"/></a>';
      $logo .= '<a class="third-logo" href="https://www.site.it"><img src="http://site.local/wp-content/uploads/2022/03/medicina.jpg"/></a>';
      return $logo;
    }
    add_filter('avf_logo_final_output', 'avf_add_logos', 10, 1);
    

    Best regards,
    Ismael

    #1346276

    Implemented the main logo in svg and the second logo png via widget.

    Logo is not displayed exactly and on the mobile must be higher than the main logo.

    #1346394

    Hi,

    Thank you for following up.

    You can use this css code to adjust the height of the header and move the position of the second logo.

    @media only screen and (max-width: 767px) {
      .responsive #top #header_main>.container .main_menu .av-main-nav>li>a, .responsive #top #wrap_all .av-logo-container {
        height: 180px !important;
        line-height: 180px;
      }
    
      .responsive #top #header .widget {
        left: 80px;
        top: 80px;
        max-height: 80px;
      }
    
      .responsive #top #header .widget img {
        width: 80px;
      }
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    #1346521

    Hi Ismael.
    Thank you

    #1346580

    Hi,

    No problem! Please let us know if you have more questions about the theme. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Logo and Text’ is closed to new replies.