DigitalN Posted December 18, 2012 Share Posted December 18, 2012 (edited) I'm currently trying to build an updated site for our company, but having some issues with the site title. I want it gone on the home page, but not the others. Can anyone provide me with something I can use to get rid of this? here is a link: https://keith-martinot-u7jg.squarespace.com/ Thanks in advance! Edited December 18, 2012 by DigitalN Link to comment
Solution Karl Guertin Posted December 18, 2012 Solution Share Posted December 18, 2012 (edited) Using the CSS editor: .homepage #top { display: none; } Also check through the style tweaks, your template author may have provided an option for the homepage to not display a title. Edited December 18, 2012 by Karl Guertin Frontend Dev @ Squarespace I work on the core javascript and in particular the editing system. If you type things in, you're using my code. My knowledge of the rest of the system varies. I don't set the roadmap and I can't talk about upcoming stuff. Answers aren't official, they're me helping out on my own time. Link to comment
DigitalN Posted December 19, 2012 Author Share Posted December 19, 2012 Karl, thanks for the help! This works flawlessly. Link to comment
DigitalN Posted December 19, 2012 Author Share Posted December 19, 2012 Hi Karl, can I ask how I am able to customize this for other pages? If I was to apply it to the "Who We Are" page, I was thinking all I would need to do is change the .homepage part to .whoweare but that appears to not be working. Link to comment
Karl Guertin Posted December 19, 2012 Share Posted December 19, 2012 If you're going to do this consistently, take out the CSS and check the 'Options>Hide Page Title' tweak in the style editor. That will disable the title on all pages. Frontend Dev @ Squarespace I work on the core javascript and in particular the editing system. If you type things in, you're using my code. My knowledge of the rest of the system varies. I don't set the roadmap and I can't talk about upcoming stuff. Answers aren't official, they're me helping out on my own time. Link to comment
Karl Guertin Posted December 19, 2012 Share Posted December 19, 2012 If you're going to do it on a per-page basis, you'll have to use the page id. This is found in the id attribute on the page's body tag. In the case of your 'Who We Are' page it'd be "#collection-509c3dd7e4b0b5d93ca20b69 #top" Frontend Dev @ Squarespace I work on the core javascript and in particular the editing system. If you type things in, you're using my code. My knowledge of the rest of the system varies. I don't set the roadmap and I can't talk about upcoming stuff. Answers aren't official, they're me helping out on my own time. Link to comment
DigitalN Posted December 19, 2012 Author Share Posted December 19, 2012 I hadn't even seen that option on the style editor. You're awesome! Thanks for the help. Link to comment
Guest Posted September 15, 2014 Share Posted September 15, 2014 change the title color to be transparent to hide it on the whole site Link to comment
bmackey Posted December 12, 2014 Share Posted December 12, 2014 How would I do this just for Pacific/Horizon's index page? Link to comment
aserrao Posted December 12, 2014 Share Posted December 12, 2014 @bmackey, in Pacific, if you're using your Site Title, you can use this in your Custom CSS: .homepage #siteTitle {display: none;} If you're using a logo, use this; .homepage #logoImage {display: none;} SodaCreekDigital 1 Link to comment
alextsang86@gmail.com Posted February 1, 2016 Share Posted February 1, 2016 How can i remove the site title for OM template on all pages? Link to comment
joakimlundin Posted April 5, 2016 Share Posted April 5, 2016 (edited) Hi guys, I'm having the same problem but on the wells template. I've tried the css codes provided but it doesn't work... Thanks, ping @alexberen JL Edited April 5, 2016 by joakimlundin Initial Revision Link to comment
Belrae Posted March 17, 2017 Share Posted March 17, 2017 Hi, Did any one resolve this?Im having the same problem the codes aren't working. Thanks! Link to comment
djmichaeldemby Posted August 10, 2018 Share Posted August 10, 2018 This is great! I was able to remove the site title on my homepage, but now there's a bit of extra spacing. Is there a way to remove this extra space? My website is www.DJMichaelDemby.com Thanks! Link to comment
vcampaner Posted April 9, 2021 Share Posted April 9, 2021 Hi, is it possible to remove the site title from the header entirely? thank you Link to comment
creedon Posted April 9, 2021 Share Posted April 9, 2021 @vcampaner Visually or structurally? Visually. Here the title has been hidden but the space it took up is still in the flow. .header-title { visibility : hidden; } Structurally. Here the title has been taken out of the flow. .header-title { display : none; } vcampaner 1 Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
vcampaner Posted April 10, 2021 Share Posted April 10, 2021 13 hours ago, creedon said: @vcampaner Visually or structurally? Visually. Here the title has been hidden but the space it took up is still in the flow. .header-title { visibility : hidden; } Structurally. Here the title has been taken out of the flow. .header-title { display : none; } Thank you this is really helpful ! If I remove it structurally is it going to change my google search ? Link to comment
creedon Posted April 10, 2021 Share Posted April 10, 2021 (edited) @vcampaner Structurally is probably not the best term but I couldn't think of a better one. I'm trying to explain some complex stuff without going into all the deeper stuff. When display : none is used it takes the element out of the rendering flow but the element still remains available but now not visible. Since the element is still available it can be put back into the flow by changing display again. I don't know if Google ignores elements that have display : none on them and if it does how it goes into Google ranking. I doubt Google is going to get confused about which site and page it is indexing. The site and page title are still part of the header information for your site. Edited April 12, 2021 by creedon vcampaner 1 Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
vcampaner Posted April 11, 2021 Share Posted April 11, 2021 16 hours ago, creedon said: @vcampaner Structurally is probably not the best term but I couldn't think of a better one. I'm trying to explain some complex stuff without going into all the deeper stuff. When display : none is used it takes the element out of the rendering flow but the element is still remains available but now not visible. Since the element is still available it can be put back into the flow by changing display again. I don't know if Google ignores elements that have display : none on them and if it does how it goes into Google ranking. I doubt Google is going to get confused about which site and page it is indexing. The site and page title are still part of the header information for your site. Thank you this is helpful ! Link to comment
noobiedesign Posted January 10, 2022 Share Posted January 10, 2022 On 4/9/2021 at 3:12 PM, creedon said: @vcampaner Visually or structurally? Visually. Here the title has been hidden but the space it took up is still in the flow. .header-title { visibility : hidden; } Structurally. Here the title has been taken out of the flow. .header-title { display : none; } For some reason this doesn't work for me. I am using the Impact template. I want the top "The Social...." gone because it is redundant. Link to comment
creedon Posted January 10, 2022 Share Posted January 10, 2022 @noobiedesign Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
noobiedesign Posted January 24, 2022 Share Posted January 24, 2022 On 1/10/2022 at 5:04 PM, creedon said: @noobiedesign Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue. kroschlab.com Thanks Link to comment
creedon Posted January 25, 2022 Share Posted January 25, 2022 On 1/10/2022 at 9:36 AM, noobiedesign said: For some reason this doesn't work for me. I am using the Impact template. The reason it didn't work as the code was designed for a different template. I'm not see what you are seeing. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. 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