Hi @gallagherBD,
It was added as part of your menu.
- Go to Appearance Menu > Edit that primay menu.
- Add a Custom Link in it. Let say you add Logo as custom link label. For link on URL: add your site homepage URL: http://kettlecorndemo.gallagherbd.com/
- Find the middle of the menu, and move that custom link.
- On CSS Classes text field for that menu link, add logo-menu-item class. If this textfield is currently unavailble, click Screen Options on the upper right part of the page and enable CSS Classes under Show advanced menu properties
- Add the following CSS on Theme Options > Global CSS
@media (min-width: 980px) {
.x-logobar {
display: none !important;
visibility: hidden !important;
}
.x-navbar .desktop .x-nav > li.logo-menu-item > a {
text-indent: -99999px;
text-align: left;
width: 306px;
height:75px;
background: url(https://www.source1sys.com/wp-content/uploads/2018/05/sourceone-web-logo.png) no-repeat center center;
background-size: contain;
}
}
Change image to your current image site URL and also other values related to that image like width and height.
Hope this helps.