genfoch01 Posted June 19, 2022 Share Posted June 19, 2022 Site URL: https://grey-lizard-4aa7.squarespace.com/search squarespace 7.1 url https://grey-lizard-4aa7.squarespace.com/search pw xyzzy i need to do three things here. 1) change the placeholder text color 2) change the white searchbox outline to a different color 3) remove the searchbox focus outline ( the black outline that appears when you click the box ) I really appreciate your time. John Link to comment
tuanphan Posted June 20, 2022 Share Posted June 20, 2022 #1. Add to Design > Custom CSS .sqs-search-page-input input::placeholder { color: red !important; } #2. Use this CSS .sqs-search-page-input { border-color: green !important; } #3. Use this .sqs-search-page-input { outline: none !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
genfoch01 Posted June 21, 2022 Author Share Posted June 21, 2022 Thank you so much. that was just what i needed! Link to comment
vcRBS Posted October 5, 2022 Share Posted October 5, 2022 Anyway to also remove the sidebar? Link to comment
tuanphan Posted October 8, 2022 Share Posted October 8, 2022 On 10/6/2022 at 1:15 AM, vcRBS said: Anyway to also remove the sidebar? Add to Settings > Advanced > Code Injection > Footer <script> if (document.location.pathname.indexOf("/search") == 0) { document.querySelector('body').classList.add('t-search') } </script> <style> body.t-search div#sidebar-one-wrapper { display: none; } body.t-search div#content-wrapper { border: none; } </style> vcRBS 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care 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