Two Logos In Wordpress Softexpert

How to add Multiple Logos to WordPress Website

Let’s see How to add Multiple Logos to WordPress Website or a secondary logo. You can display two logos in the header at the same time using a few lines of code. No need for an extra plugin here.

Code here 👇

.nav.navbar-nav {
    position: relative;
}
.nav.navbar-nav::after {
    content: url(image-url);
    position: absolute;
    z-index: 100000;
    top: -15px;
    margin-left: 800px;
}

Leave a Reply

Your email address will not be published. Required fields are marked *