HansenCreations Posted November 16, 2020 Share Posted November 16, 2020 Site URL: https://www.anybodysautos.net I want to set up a new page on my website called "Freeze Peach" but instead of just typing it into the Navigation bar like usual, I'd like to use a .png of the logo that my friend is designing. They don't have the logo designed yet, so I just created the page as "Coming Soon!" for now. I tried uploading a file in Custom CSS to see if that would work, but sadly it didn't. And I'm not very experienced in css. Let me know if there's another way! Thanks Link to comment
Beyondspace Posted November 17, 2020 Share Posted November 17, 2020 7 hours ago, HansenCreations said: Site URL: https://www.anybodysautos.net I want to set up a new page on my website called "Freeze Peach" but instead of just typing it into the Navigation bar like usual, I'd like to use a .png of the logo that my friend is designing. They don't have the logo designed yet, so I just created the page as "Coming Soon!" for now. I tried uploading a file in Custom CSS to see if that would work, but sadly it didn't. And I'm not very experienced in css. Let me know if there's another way! Thanks I think you still need to add the page to nav bar and restyle the nav item with css, could I check the image you got? 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
HansenCreations Posted November 17, 2020 Author Share Posted November 17, 2020 Right! I've added the page to the nav bar and now need a little guidance on restyling. 😅 And the image is attached below. Beyondspace 1 Link to comment
Solution Beyondspace Posted November 18, 2020 Solution Share Posted November 18, 2020 44 minutes ago, HansenCreations said: Right! I've added the page to the nav bar and now need a little guidance on restyling. 😅 And the image is attached below. .Header-nav-item[href*=coming-soon], .Mobile-overlay-nav-item[href*=coming-soon] { position: relative; color: transparent !important; } .Header-nav-item[href*=coming-soon]:after, .Mobile-overlay-nav-item[href*=coming-soon]:after { content: ''; background: url(https://content.invisioncic.com/p289038/monthly_2020_11/FreezePeach-ComingSoon.png.ce50920572f09ddd418a10fcdc065c88.png) no-repeat; background-size: cover; position: absolute; width: 200px; height: 120%; } .Mobile-overlay-nav-item[href*=coming-soon]:after { left: -10%; } .Header-nav-item[href*=coming-soon]:after { left: 50%; top: 50%; transform: translate(-50%, -50%); } HansenCreations 1 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
HansenCreations Posted November 30, 2020 Author Share Posted November 30, 2020 Awesome! That worked. Thank you @bangank36 Link to comment
adc Posted April 7, 2022 Share Posted April 7, 2022 On 11/17/2020 at 7:19 PM, bangank36 said: .Header-nav-item[href*=coming-soon], .Mobile-overlay-nav-item[href*=coming-soon] { position: relative; color: transparent !important; } .Header-nav-item[href*=coming-soon]:after, .Mobile-overlay-nav-item[href*=coming-soon]:after { content: ''; background: url(https://content.invisioncic.com/p289038/monthly_2020_11/FreezePeach-ComingSoon.png.ce50920572f09ddd418a10fcdc065c88.png) no-repeat; background-size: cover; position: absolute; width: 200px; height: 120%; } .Mobile-overlay-nav-item[href*=coming-soon]:after { left: -10%; } .Header-nav-item[href*=coming-soon]:after { left: 50%; top: 50%; transform: translate(-50%, -50%); } I'm trying to do the same thing on a page I'm working on, and I'm not getting the desired effect. if someone could take a look and let me know what I'm doing wrong, I would greatly appreciate it! www.dreammarketinggroup.com. Trying to get the 'DREAMVS' navigation link to display a logo. Thanks in advance Link to comment
tuanphan Posted April 10, 2022 Share Posted April 10, 2022 On 4/7/2022 at 9:07 AM, adc said: I'm trying to do the same thing on a page I'm working on, and I'm not getting the desired effect. if someone could take a look and let me know what I'm doing wrong, I would greatly appreciate it! www.dreammarketinggroup.com. Trying to get the 'DREAMVS' navigation link to display a logo. Thanks in advance Add to Design > Custom CSS div.header-nav-item [href="/dreamvs"] {content: ''; background: url(https://content.invisioncic.com/p289038/monthly_2020_11/FreezePeach-ComingSoon.png.ce50920572f09ddd418a10fcdc065c88.png) no-repeat; background-size: cover; height: 100%; color: transparent !important; background-position: center center; } 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
SSong Posted April 12, 2022 Share Posted April 12, 2022 (edited) On 4/10/2022 at 9:00 AM, tuanphan said: Add to Design > Custom CSS div.header-nav-item [href="/dreamvs"] {content: ''; background: url(https://content.invisioncic.com/p289038/monthly_2020_11/FreezePeach-ComingSoon.png.ce50920572f09ddd418a10fcdc065c88.png) no-repeat; background-size: cover; height: 100%; color: transparent !important; background-position: center center; } Can you help me as well? I'd like to change the FOR FUN navigation link of this site to this logo here. And f I want it to be a vector svg instead of a png, can I just swap it out after? Thank you! Edited April 12, 2022 by SSong - Link to comment
tuanphan Posted April 18, 2022 Share Posted April 18, 2022 On 4/13/2022 at 3:25 AM, SSong said: Can you help me as well? I'd like to change the FOR FUN navigation link of this site to this logo here. And f I want it to be a vector svg instead of a png, can I just swap it out after? Thank you! Add this CSS a.Header-nav-item[href*="forfunfoods"] { background-image: url(https://static1.squarespace.com/static/5c5aed7b840b160c0a36ad9a/t/6255df2b4ea0b25916fa73dc/1649794859649/FF_Logotype_Web.png); color: transparent !important; background-size: contain; background-repeat: no-repeat; background-position: center center; } If you want to change to svg, just replace url in the code with svg file url raeroshow 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
mpap22 Posted February 26, 2023 Share Posted February 26, 2023 @tuanphan I replicated this as well, and it works on homepage, but once link is active, the png disappears in the header and nothing shows. Any ideas why? Link to comment
tuanphan Posted February 28, 2023 Share Posted February 28, 2023 On 2/26/2023 at 11:40 AM, mpap22 said: @tuanphan I replicated this as well, and it works on homepage, but once link is active, the png disappears in the header and nothing shows. Any ideas why? add !important after the code a.Header-nav-item[href*="forfunfoods"] { background-image: url(https://static1.squarespace.com/static/5c5aed7b840b160c0a36ad9a/t/6255df2b4ea0b25916fa73dc/1649794859649/FF_Logotype_Web.png) !important; color: transparent !important; background-size: contain; background-repeat: no-repeat; background-position: center center; } 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
Felinikus Posted April 11 Share Posted April 11 Could someone help me with this website: https://www.studiollots.com I have used this code to replace the nav bar/ dropdown menu, with an icon, but it only appears on the homepage. If I e.g. change to Trends or projects : https://www.studiollots.com/projekte The icon is gone and there is not even a navigation bar anymore @media only screen and (min-width:640px) { .header-actions-action--social .icon--fill:nth-of-type(1) { svg { display:none; } background-image: url(https://static1.squarespace.com/static/626849f9d4b34577d12db0c6/t/65df612385cc5440368eb5d0/1709138498868/konversation.png); background-size: 100%; background-repeat: no-repeat; } } .header-nav-item[href*=menu], .mobile-overlay-nav-item[href*=menu] { position: relative; color: transparent !important; } div.header-nav-item [href="/menu"] {content: ''; background: url(https://static1.squarespace.com/static/626849f9d4b34577d12db0c6/t/65df612362122e038032071c/1709138498825/burger-menu.pnghttps://static1.squarespace.com/static/65df3b2b0c9ed76ee88da410/t/65df50c9d74e483842ee2b9f/1709134025253/burger-menu.png) no-repeat; background-size: cover; height: 100%; color: transparent !important; background-position: center center; } this is my code.. PLS HEEELP Link to comment
tuanphan Posted April 13 Share Posted April 13 On 4/11/2024 at 4:14 PM, Felinikus said: Could someone help me with this website: https://www.studiollots.com I have used this code to replace the nav bar/ dropdown menu, with an icon, but it only appears on the homepage. If I e.g. change to Trends or projects : https://www.studiollots.com/projekte The icon is gone and there is not even a navigation bar anymore @media only screen and (min-width:640px) { .header-actions-action--social .icon--fill:nth-of-type(1) { svg { display:none; } background-image: url(https://static1.squarespace.com/static/626849f9d4b34577d12db0c6/t/65df612385cc5440368eb5d0/1709138498868/konversation.png); background-size: 100%; background-repeat: no-repeat; } } .header-nav-item[href*=menu], .mobile-overlay-nav-item[href*=menu] { position: relative; color: transparent !important; } div.header-nav-item [href="/menu"] {content: ''; background: url(https://static1.squarespace.com/static/626849f9d4b34577d12db0c6/t/65df612362122e038032071c/1709138498825/burger-menu.pnghttps://static1.squarespace.com/static/65df3b2b0c9ed76ee88da410/t/65df50c9d74e483842ee2b9f/1709134025253/burger-menu.png) no-repeat; background-size: cover; height: 100%; color: transparent !important; background-position: center center; } this is my code.. PLS HEEELP You need to add !important to some code div.header-nav-item [href="/menu"] { content: ''; background: url(https://static1.squarespace.com/static/626849f9d4b34577d12db0c6/t/65df612362122e038032071c/1709138498825/burger-menu.pnghttps://static1.squarespace.com/static/65df3b2b0c9ed76ee88da410/t/65df50c9d74e483842ee2b9f/1709134025253/burger-menu.png) no-repeat !important; background-size: cover !important; height: 100% !important; color: transparent !important; background-position: center center !important; } 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment