Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #193891

    Hi

    Is it possible to integrate a Cosum Logo (as PNG Image) into the Top Menu (directly after the “Social Icons”) with a link ?
    I know its not possible easy in the Admin, but maybe you can give me a little Info in wich template File i can place the Costum Code ?

    <a href="http://www.hyperlink.com" target="_blank">
    <img src="partner.png" width="45" height="15" alt="Partner-Name"/>
    </a>

    By the way, it would be a great Idea for a further Update, additional to the “Social Icons” to Integrate own uploaded Images.
    But i have to say, the Template and the Support is really awsome!!!

    Best Regards

    Jack

    • This topic was modified 10 years, 12 months ago by Jack.
    #194132

    Hey Jack!

    In WordPress dashboard, please go to Appearance > Editor and open Header.php file and find

    do_action('avia_meta_header');
                            echo '</nav>';
                        ?>
                      </div>

    and add your code right under it. It would be better if you add it into a div tag with a custom class, so you can style it afterwards

    Cheers!
    Yigit

    #194248
    This reply has been marked as private.
    #194256

    Hey!

    Please paste inside the containe, right after this one:

    do_action('avia_meta_header');
                            echo '</nav>';
                        ?>

    Give it a unique css selector:

    <a class="hyperlink-header"href="http://www.hyperlink.com" target="_blank">
    <img src="partner.png" width="45" height="6" alt="Partner-Name">
    </a>

    Let us know if you already make this changesso that we can proceed. Please post a screenshot of what you’re trying to do. We will help you with the adjustments.

    Regards,
    Ismael

    #194302
    This reply has been marked as private.
    #194410
    This reply has been marked as private.
    #194519

    Hey!

    Try this:

    .hyperlink-header {
        position: absolute;
        top: 0;
        left: 50px;
    }

    Regards,
    Josue

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Costum Logo at the Top Menu’ is closed to new replies.