DCavallo Posted January 6, 2023 Share Posted January 6, 2023 Hello, Is there a way to add a second line to my site title? I'd like to put the text CINEMATOGRAPHER below my name in the header, but can't seem to find a way to do it. Many thanks in advance for any advice or assistance! Regards, David Link to comment
paul2009 Posted January 6, 2023 Share Posted January 6, 2023 1 hour ago, DCavallo said: Is there a way to add a second line to my site title? There are ways to do this but it will depend on the Squarespace version, template, header layout and so on. If you provide us with a working link to the site we can provide more tailored advice. How to Post a Forum Question provides guidance on how to provide a link. Did this help? Please give feedback by clicking an icon below ⬇️ DCavallo 1 Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional. Would you like your customers to be able to mark their favourite products in your Squarespace store? Link to comment
DCavallo Posted January 6, 2023 Author Share Posted January 6, 2023 Thank you for your response, and my apologies for not including a link. (I had included a URL in the field for the forum post, and incorrectly assumed this would transfer into the actual post.) Here is my site: https://davidjcavallo.com I have managed a workaround for now--creating a site logo image in Photoshop that has two lines of text-but would be curious to know how to create a second line in the site title without using a site logo image. Thank you again. Regards, David Link to comment
tuanphan Posted January 8, 2023 Share Posted January 8, 2023 On 1/7/2023 at 4:45 AM, DCavallo said: Thank you for your response, and my apologies for not including a link. (I had included a URL in the field for the forum post, and incorrectly assumed this would transfer into the actual post.) Here is my site: https://davidjcavallo.com I have managed a workaround for now--creating a site logo image in Photoshop that has two lines of text-but would be curious to know how to create a second line in the site title without using a site logo image. Thank you again. Regards, David Change it to site title then add this to Design > Custom CSS a#site-title:after { content: "enter text 2"; display: block; } TimWW 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
DCavallo Posted January 20, 2023 Author Share Posted January 20, 2023 Thank you so much for your reply--I am just seeing it now, weeks later. Can you please clarify what "change it to site title" means? Apologies for the possibly dumb questions but Is there a place on the Custom CSS page where you specify where it is applied to? Regards, David Link to comment
Solution tuanphan Posted January 26, 2023 Solution Share Posted January 26, 2023 On 1/21/2023 at 2:37 AM, DCavallo said: Thank you so much for your reply--I am just seeing it now, weeks later. Can you please clarify what "change it to site title" means? Apologies for the possibly dumb questions but Is there a place on the Custom CSS page where you specify where it is applied to? Regards, David You are using Logo Image. Change Logo image to Site Title text then add above code Home > Design > Custom CSS 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
Jaynewritesplays Posted February 1, 2023 Share Posted February 1, 2023 Hello, I used this thread and it worked for me - I was able to add a second line of text to my header. Now my question is - how do I make the font of this second line smaller than the main header above it? I've included a screenshot, since my sight is not yet live. Thank you! Link to comment
tuanphan Posted February 3, 2023 Share Posted February 3, 2023 On 2/2/2023 at 2:53 AM, Jaynewritesplays said: Hello, I used this thread and it worked for me - I was able to add a second line of text to my header. Now my question is - how do I make the font of this second line smaller than the main header above it? I've included a screenshot, since my sight is not yet live. Thank you! If you used this code a#site-title:after { content: "enter text 2"; display: block; } then you can add font-size attribute a#site-title:after { content: "enter text 2"; display: block; font-size: 16px; } 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
Jaynewritesplays Posted February 3, 2023 Share Posted February 3, 2023 thank you that worked perfectly! Link to comment
robfeltrin Posted October 24, 2023 Share Posted October 24, 2023 I've added this to my website, but the second line moves down when the screen size is increased or up when decreased. https://violin-halibut-2csa.squarespace.com/ mmmarchitects any idea what to do to make sure the architects and MMM remain the size and spaced evenly? Link to comment
robfeltrin Posted October 24, 2023 Share Posted October 24, 2023 Whatever it is, it has also moved the clickable area of the burger downwards. I can't figure out what's causing this, though. Link to comment
tuanphan Posted October 27, 2023 Share Posted October 27, 2023 On 10/24/2023 at 10:05 PM, robfeltrin said: I've added this to my website, but the second line moves down when the screen size is increased or up when decreased. https://violin-halibut-2csa.squarespace.com/ mmmarchitects any idea what to do to make sure the architects and MMM remain the size and spaced evenly? Use this new code a#site-title:after { content: "enter text 2"; display: block; } 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
robfeltrin Posted October 27, 2023 Share Posted October 27, 2023 That does the same thing... a#site-title:after { content: "architects"; display: block; font-family: calibri; font-size: 3rem; } The MMM becomes bigger with larger screens, and the architects resizes too but they dont resize the same... Link to comment
Somhairle Posted November 1, 2023 Share Posted November 1, 2023 Thanks for this. I've added a second line using the code above but I'm now trying to figure out the code a third line under it. Any ideas? samuelmarr.com Link to comment
tuanphan Posted November 3, 2023 Share Posted November 3, 2023 On 11/1/2023 at 4:35 PM, Somhairle said: Thanks for this. I've added a second line using the code above but I'm now trying to figure out the code a third line under it. Any ideas? samuelmarr.com Use code like this a#site-title:after { content: "Somhairle Ó Meachair \A Brand Design"; display: block; white-space: pre-wrap; } Somhairle 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
Somhairle Posted November 20, 2023 Share Posted November 20, 2023 On 11/3/2023 at 7:01 AM, tuanphan said: Use code like this a#site-title:after { content: "Somhairle Ó Meachair \A Brand Design"; display: block; white-space: pre-wrap; } Thank you so much! Link to comment
cssrookie Posted December 31, 2023 Share Posted December 31, 2023 Many have suggested this code: a#site-title:after { content: "enter text 2"; display: block; } But on my site, it doen't work. The added text appears directly on the already existing site title, on the same row. What am I missing? I'm on Squarespace 7.1. Link to comment
creedon Posted January 1 Share Posted January 1 Please post the URL for a page on your site where we can see your issue. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. Please set up a site-wide password, if your site is not public and 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 site-wide password and how to share a link documentation to understand how they work. We can then take a look at your issue. You may find How to post a forum question post useful. 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
nataliaamelia Posted January 21 Share Posted January 21 Hi there, I read the thread and the code doesn't work on my website (under construction and not yet published) nataliaameliasaied.com shall I set a site-wide password and paste it here or send it as a personal message? Thanks! Link to comment
tuanphan Posted January 21 Share Posted January 21 3 hours ago, nataliaamelia said: Hi there, I read the thread and the code doesn't work on my website (under construction and not yet published) nataliaameliasaied.com shall I set a site-wide password and paste it here or send it as a personal message? Thanks! Add to Website Tools (under Not Linked) > Custom CSS a#site-title:after { content: "Squarespace 7.1"; display: block; font-size: 18px; } Reference nataliaamelia 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
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment