PartTwoDesign Posted October 6, 2021 Share Posted October 6, 2021 Site URL: https://www.energystoreltd.com/ I've added LinkedIn and Facebook to the footer - I can see them when editing my site but can't see them on the live website... does anyone have any idea why this the social links aren't showing? Thanks! Link to comment
Beyondspace Posted October 6, 2021 Share Posted October 6, 2021 33 minutes ago, PartTwoDesign said: Site URL: https://www.energystoreltd.com/ I've added LinkedIn and Facebook to the footer - I can see them when editing my site but can't see them on the live website... does anyone have any idea why this the social links aren't showing? Thanks! Have you saved your site squarespace yet? footer_social_link.mp4 My result after saving Support me by pressing 👍 if this useful for you BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
PartTwoDesign Posted October 6, 2021 Author Share Posted October 6, 2021 @bangank36yes my site is saved and live - https://www.energystoreltd.com/ You can tell the icons are there when you roll over the area in the footer (see screenshot below) - but they just aren't showing up. Link to comment
tuanphan Posted October 7, 2021 Share Posted October 7, 2021 @PartTwoDesign Try removing icons > Save page >> Then add icon again Beyondspace 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
PartTwoDesign Posted October 7, 2021 Author Share Posted October 7, 2021 @tuanphan Hi Tuan! When I added the icons back in, the same thing happens - they aren't visible in "Knockout" style but I can tell they are there as the mouse hovers over the links. I've tried changing them to the "Solid" design and now I'm seeing the below - I think something in my custom code is messing with them? Link to comment
tuanphan Posted October 10, 2021 Share Posted October 10, 2021 On 10/7/2021 at 10:17 PM, PartTwoDesign said: @tuanphan Hi Tuan! When I added the icons back in, the same thing happens - they aren't visible in "Knockout" style but I can tell they are there as the mouse hovers over the links. I've tried changing them to the "Solid" design and now I'm seeing the below - I think something in my custom code is messing with them? I checked the icon code, and it seems that some of the code from the icon itself has problems. You can't solve this, Squarespace will need to check. In the meantime, you'll need custom code to insert the icon. What icons do you want to insert? We will check and give code to insert new icon. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
PartTwoDesign Posted October 11, 2021 Author Share Posted October 11, 2021 (edited) Hi @tuanphan thank you! We'd like to add LinkedIn and Facebook: https://www.linkedin.com/company/energystore-limited/ https://www.facebook.com/energystoreltd/ You had previously supplied me with the below code as we'd like the icons to change to orange on hover (however I had since removed this code from the site when troubleshooting the icon issue) //--On Page Icons .sqs-use--icon {fill:black!important;} .sqs-use--mask {fill:white!important;} .sqs-svg-icon--wrapper {border-color:white!important} //-- Hover effect from the tutorial .sqs-svg-icon--wrapper:hover .sqs-use--mask {fill:#e33c31!important;} Thanks, Anna Edited October 11, 2021 by PartTwoDesign Link to comment
tuanphan Posted October 13, 2021 Share Posted October 13, 2021 On 10/11/2021 at 5:50 PM, PartTwoDesign said: Hi @tuanphan thank you! We'd like to add LinkedIn and Facebook: https://www.linkedin.com/company/energystore-limited/ https://www.facebook.com/energystoreltd/ You had previously supplied me with the below code as we'd like the icons to change to orange on hover (however I had since removed this code from the site when troubleshooting the icon issue) //--On Page Icons .sqs-use--icon {fill:black!important;} .sqs-use--mask {fill:white!important;} .sqs-svg-icon--wrapper {border-color:white!important} //-- Hover effect from the tutorial .sqs-svg-icon--wrapper:hover .sqs-use--mask {fill:#e33c31!important;} Thanks, Anna Hi, Try adding a Code Block >> Paste this code <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous"> <ul class="t-social"> <li> <a href="https://www.facebook.com/energystoreltd/" target="_blank"> <i class="fab fa-facebook-f"></i> </a> </li> <li> <a href="https://www.linkedin.com/company/energystore-limited/" target="_blank"> <i class="fab fa-linkedin-in"></i> </a> </li> </ul> <style> /* code block padding top bottom */ .code-block { padding-top: 0; padding-bottom: 0; } /* social icons code */ .t-social { display: block; margin: 0 auto; padding-top: 5px; text-align: center; padding-left: 0; } .t-social li { display: inline-block; margin: 0; line-height: 100%!important; } .t-social li i { font-size: 30px; margin: 0 20px; color: black; } .t-social li:hover i { color: #e33c31; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
PartTwoDesign Posted October 13, 2021 Author Share Posted October 13, 2021 Thanks @tuanphanI'm afraid this isn't working quite right just yet - https://www.energystoreltd.com/ The code block is appearing as two dashes: We'd like the icons to smoothly fade to red (#e33c31) on hover, like this: Link to comment
tuanphan Posted October 15, 2021 Share Posted October 15, 2021 On 10/13/2021 at 8:25 PM, PartTwoDesign said: Thanks @tuanphanI'm afraid this isn't working quite right just yet - https://www.energystoreltd.com/ The code block is appearing as two dashes: We'd like the icons to smoothly fade to red (#e33c31) on hover, like this: adh, remove the code & use this new code <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous"> <ul class="t-social"> <li> <a href="https://www.facebook.com/energystoreltd/" target="_blank"> <i class="fab fa-facebook-f"></i> </a> </li> <li> <a href="https://www.linkedin.com/company/energystore-limited/" target="_blank"> <i class="fab fa-linkedin-in"></i> </a> </li> </ul> <style> /* code block padding top bottom */ .code-block { padding-top: 0; padding-bottom: 0; } /* social icons code */ .t-social { display: block; margin: 0 auto; padding-top: 5px; text-align: center; padding-left: 0; } .t-social li { display: inline-block; margin: 0; line-height: 100%!important; } .t-social li i { font-size: 30px; margin: 0 20px; color: #e33c31; } .t-social li:hover i { color: #e33c31; } ul.t-social li:before { display: none !important; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
PartTwoDesign Posted October 18, 2021 Author Share Posted October 18, 2021 Hi @tuanphan - you can see how it's looking now: https://www.energystoreltd.com Do you think there's any way of using the code block to get the icons in a circle and aligned left? Link to comment
tuanphan Posted October 20, 2021 Share Posted October 20, 2021 On 10/18/2021 at 8:21 PM, PartTwoDesign said: Hi @tuanphan - you can see how it's looking now: https://www.energystoreltd.com Do you think there's any way of using the code block to get the icons in a circle and aligned left? Add this to Code Block <style> ul.t-social { text-align: left; } .t-social li i { background-color: #e33c31; width: 50px; height: 50px; line-height: 50px; font-size: 20px; color: white; border-radius: 50%; margin: 5px; text-align: center; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
MRBFin Posted March 29, 2022 Share Posted March 29, 2022 Hi, I'm having the same problem. When editing, the social icons show just fine. But on the public website, it only shows the solid block color. Though, when I hover it still shows the right social link. My website link is https://www.mrbfinance.com/ Would you please help me on this too? @tuanphan Thank you so much in advance! Link to comment
tuanphan Posted March 30, 2022 Share Posted March 30, 2022 On 3/29/2022 at 11:16 AM, MRBFin said: Hi, I'm having the same problem. When editing, the social icons show just fine. But on the public website, it only shows the solid block color. Though, when I hover it still shows the right social link. My website link is https://www.mrbfinance.com/ Would you please help me on this too? @tuanphan Thank you so much in advance! Yes. Same problem here. Have you tried contacting SS Customer Care yet? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
MRBFin Posted April 19, 2022 Share Posted April 19, 2022 On 3/30/2022 at 3:23 PM, tuanphan said: Yes. Same problem here. Have you tried contacting SS Customer Care yet? Hi @tuanphan Thank you so much for your reply! I have tried contacted SS Customer service, she mentioned the issue was most likely caused by custom code injection, but can't pin point the exact code responsible for it. I have tried disabling the codes on my site but the problem still persists. Is there any way to know which code causes the trouble? Or if not, is there any other way to show social icons, some other code maybe? Thank youu! Link to comment
Beyondspace Posted April 19, 2022 Share Posted April 19, 2022 Temporarily, You can check the result of your code via accessing your site with the Incognito. Just wait until SS fixes this bug BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! 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