Is there anyone who can assist me?
I currently have SiteSearch360 set up on my website with a full screen search bar that is activated by clicking on an image of a magnifying glass.
My goal is to replace the default image
(src="https://cdn.sitesearch360.com/ss360-search-icon.png")
with my own Font Awesome icon to maintain consistency with the other icons used on the site.
However, when I substitute the source with my Font Awesome code
<i class="fas fa-search"></i>
, the icon appears broken and does not respond to clicks. Strangely, if the icon is not included in the SiteSearch360 configuration, it displays correctly. I've experimented with numerous variations of the code, but have not been successful in getting it to work. Any assistance would be greatly appreciated.
Thank you in advance
site-nav.hbs
<nav class="site-nav">
<div class="site-nav-left-wrapper">
<div class="site-nav-left">
{{#if @site.logo}}
<a class="site-nav-logo" href="{{@site.url}}"><img src="{{@site.logo}}" alt="{{@site.title}}" /></a>
{{else}}
<a class="site-nav-logo" href="{{@site.url}}">{{@site.title}}</a>
{{/if}}
<div class="site-nav-content">
<div class="mobileShow">👉 Scroll</div>
{{#if @site.navigation}}{{navigation}}
{{/if}}
{{#is "post"}}
<span class="nav-post-title {{#unless @site.logo}}dash{{/unless}}">{{post.title}}</span>
{{/is}}
</div>
</div>
</div>
<div class="site-nav-right">
<img id="ss360-search-trigger" src="https://cdn.sitesearch360.com/ss360-search-icon.png" style="cursor:pointer;position: relative;top:4px;" data-pagespeed-url-hash="3037143943" onload="pagespeed.CriticalImages.checkImageForCriticality(this);"/>
{{#if @site.secondary_navigation}}
{{navigation type="secondary"}}
{{else}}
default.hbs (SiteSearch360 script)
<!-- Beginning of SS360 scripts -->
<script>var ss360Config={siteId:"www.monstermtn.com",showResultLink:true,showErrors:true,layout:{navigation:{position:"top"},mobile:{showUrl:true},desktop:{showUrl:true}},suggestions:{show:false},style:{themeColor:"#00843c",defaultCss:true,themeColor:'#313648'},searchBox:{placeholder:"lorem ipsum",selector:"#query"},results:{fullScreenConfig:{trigger:"#ss360-search-trigger",caption:"LOREM IPSUM"},caption:"Search results for your query #QUERY#",moreResultsPagingSize:5},tracking:{enhanced:false}};</script>
<script src="https://cdn.sitesearch360.com/v13/sitesearch360-v13.min.js" async></script>
{{!-- Ghost outputs important scripts and data with this tag - it should always be the very last thing before the closing body tag --}}
{{ghost_foot}}
</body>
</html>