• Hello,

    I want to create a second logo in my header on the right (mirroring the other one).
    I have already tried css. which I found in other forums, but nothing is working.

    The Logo should be clickable (exactly as the other one) and lead to another website.

    the file url for the second logo is: https://designshop.3d-druckcenter.com/wp-content/uploads/2020/12/01_LOGO.png

    (The website is not finished, neither is the menu, so this will change)

    Can anybody help?

    Thank you

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

Viewing 1 replies (of 1 total)
  • You can edit your header.php and add another snippet like:

    
    <div id="second-logo">
        <a href="https://www.otherwebsite.com" title="Other webisite">
           <img src="<?php echo get_template_directory_uri(); ?>/images/second_logo.png" alt="Second Logo" width="" height="" />
        </a>
    </div>
    

    You will need to play around CSS to make it work nicely.

Viewing 1 replies (of 1 total)
  • The topic ‘2 Logos in header’ is closed to new replies.