Shani Posted August 7, 2023 Share Posted August 7, 2023 Hey everyone, I want to add a search icon to the navigation bar of my website that will also be linked once you click on it. Is there an easy way to do it? https://cyan-dove-em8n.squarespace.com/ Link to comment
Ziggy Posted August 7, 2023 Share Posted August 7, 2023 Have a look at this tutorial: https://www.will-myers.com/articles/adding-a-search-bar-to-your-header-in-squarespace-71 Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲 SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️ Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
Shani Posted August 8, 2023 Author Share Posted August 8, 2023 @Ziggy This is a bit different than what I wanted, I just need the search icon to be present, and once clicked it will be linked to a different section. Link to comment
Ziggy Posted August 8, 2023 Share Posted August 8, 2023 Add a link to your navigation, set the title to SEARCH and the link to /search Then add this to Header Code Injection: <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <script> // Wait for the DOM to load document.addEventListener('DOMContentLoaded', function () { // Find the anchor element with the class "search-link" const searchLink = document.querySelector('.header-nav a[href="/search"]'); // Check if the element is found if (searchLink) { // Remove the text content searchLink.textContent = ''; // Create an icon element using Font Awesome const iconElement = document.createElement('i'); iconElement.className = 'fas fa-search'; // Font Awesome search icon class // Append the icon element to the anchor element searchLink.appendChild(iconElement); } }); </script> Please like and upvote if my comments were helpful to you. Cheers! Zygmunt Spray Squarespace Website Designer Contact me: https://squarefortytwo.com Hire me on Upwork! 🔌 Ghost Squarespace Plugins (Referral link) 📈 SEO Space (Referral link) ⬛ SquareWebsites Plugins (Referral link) 🔲 SQSP Themes (Referral link) ✨ Spark Plugin (Referral link) 🖼️ Gallery Lightbox Plugin (Referral link) ☕ Did I help? Buy me a coffee? Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment