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
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
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
Hey!
Try this:
.hyperlink-header {
position: absolute;
top: 0;
left: 50px;
}
Regards,
Josue