jvalledy Posted February 12, 2020 Posted February 12, 2020 Hi, I'm just wondering if anyone knows how to add a tag line under a site title in 7.1 perhaps using css? I'm happy copying and pasting bits of code but my understanding of coding is fairly limited - just a heads up. Any help with this would be much appreciated. Many thanks John racheldiane 1
tuanphan Posted February 12, 2020 Posted February 12, 2020 Add to Home > Design > Custom CSS a#site-title:after { content: "tuan phan"; display: block; } raeroshow, jvalledy and racheldiane 2 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!)
jvalledy Posted February 12, 2020 Author Posted February 12, 2020 @tuanphan Thanks very much my friend 🙂
kimimischke Posted March 3, 2021 Posted March 3, 2021 Is there a way to do this if you're using a logo?
tuanphan Posted March 7, 2021 Posted March 7, 2021 On 3/4/2021 at 1:50 AM, kimimischke said: Is there a way to do this if you're using a logo? Use this code .header-title-logo a:after { content: "tuan phan"; display: block; font-size: 20px; font-family: monospace; margin-top: 20px; font-weight: normal; text-align: center; } Adamec and mirjamhlastan 2 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!)
NerdvillebyJenMaher Posted March 11, 2022 Posted March 11, 2022 @tuanphan This is awesome! Thank you for this and all of the other code snippets that you put out here for us! With this code, is it possible to reduce the tagline size when it swicthes to mobile? mirjamhlastan 1 🤓Let's Get Nerdy!🤓 VISIT MY WEBSITE
tuanphan Posted March 13, 2022 Posted March 13, 2022 On 3/12/2022 at 1:00 AM, jenmaherconsulting said: @tuanphan This is awesome! Thank you for this and all of the other code snippets that you put out here for us! With this code, is it possible to reduce the tagline size when it swicthes to mobile? Use this .header-title-logo a:after { content: "tuan phan"; display: block; font-size: 20px; font-family: monospace; margin-top: 20px; font-weight: normal; text-align: center; } @media screen and (max-width:767px) { .header-title-logo a:after { font-size: 10px !important; } } mirjamhlastan 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!)
Guest Posted March 13, 2022 Posted March 13, 2022 3 hours ago, tuanphan said: Use this .header-title-logo a:after { content: "tuan phan"; display: block; font-size: 20px; font-family: monospace; margin-top: 20px; font-weight: normal; text-align: center; } @media screen and (max-width:767px) { .header-title-logo a:after { font-size: 10px !important; } } hi Tuphan i created this piece of code in the hope to move a button further up on mobile view however it says syntax error on line four could you help please / *move up shop now button */ @media screen and (max-width:767px) { Margin-left: 0px; Margin-right: 0px; Margin-top: 0px; Margin-bottom: 90px; } Regards, Jake
tuanphan Posted March 14, 2022 Posted March 14, 2022 9 hours ago, jakelyd said: hi Tuphan i created this piece of code in the hope to move a button further up on mobile view however it says syntax error on line four could you help please / *move up shop now button */ @media screen and (max-width:767px) { Margin-left: 0px; Margin-right: 0px; Margin-top: 0px; Margin-bottom: 90px; } Regards, Jake Hi, Remove space between 2 syntaxs / * 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!)
Guest Posted March 15, 2022 Posted March 15, 2022 On 3/14/2022 at 2:20 AM, tuanphan said: Hi, Remove space between 2 syntaxs / * worked! thank you again!!
racheldiane Posted September 9, 2022 Posted September 9, 2022 On 2/12/2020 at 7:18 AM, tuanphan said: Add to Home > Design > Custom CSS a#site-title:after { content: "tuan phan"; display: block; } @tuanphan THANK YOU!!!! Amazing. I'm curious.... Is there a way to make the tagline font smaller than the logo (this particular logo was generated in SqSp, not uploaded as a jpeg file). I'd love to have the name stand out a size or two larger than the tagline font, but keep the two fonts the same and the same color.
tuanphan Posted September 10, 2022 Posted September 10, 2022 17 hours ago, racheldiane said: @tuanphan THANK YOU!!!! Amazing. I'm curious.... Is there a way to make the tagline font smaller than the logo (this particular logo was generated in SqSp, not uploaded as a jpeg file). I'd love to have the name stand out a size or two larger than the tagline font, but keep the two fonts the same and the same color. Try add font size a#site-title:after { content: "tuan phan"; display: block; font-size: 15px; } racheldiane 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!)
racheldiane Posted September 14, 2022 Posted September 14, 2022 @tuanphan THANK YOU! Worked like a charm. I appreciate you! 🙂 tuanphan 1
dantakesatx Posted September 20, 2022 Posted September 20, 2022 Hi! Is there a way to position the tagline beside the logo versus below?
tuanphan Posted September 20, 2022 Posted September 20, 2022 (edited) 12 hours ago, dantakesatx said: Hi! Is there a way to position the tagline beside the logo versus below? You can change :after in the code to :before If it doesn't work, What is your site url? We can adjust code easier Edited September 20, 2022 by tuanphan 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!)
TinaHobson Posted March 30, 2023 Posted March 30, 2023 Thanks SO much for all the code help Tuan - I've been using the above. and wondered how I could make the tagline italic and white, please? (orpheus pro). Any help would be much appreciated!
TinaHobson Posted March 30, 2023 Posted March 30, 2023 2 hours ago, TinaHobson said: Thanks SO much for all the code help Tuan - I've been using the above. and wondered how I could make the tagline italic and white, please? (orpheus pro). Any help would be much appreciated! Actually - I've sorted that on the web version but doesn't appear in the mobile version 😞 - any tips? Thanks!
tuanphan Posted April 3, 2023 Posted April 3, 2023 On 3/30/2023 at 11:38 PM, TinaHobson said: Actually - I've sorted that on the web version but doesn't appear in the mobile version 😞 - any tips? Thanks! What is site url? 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!)
Jarmo2127 Posted June 30, 2023 Posted June 30, 2023 Hey All I got this working on the main page but its not working for phone any ideas .header-title-logo a:after { content: "BUILDING DESIGN"; display: block; font-size: 20px; font-family: eurostile-extended; letter-spacing: 15px; margin-top: 15px; font-weight: normal; text-align: left; margin-left: 14px; } @media screen and (max-width:767px) { .header-title-logo a:after { font-size: 10px !important; } }
tuanphan Posted June 30, 2023 Posted June 30, 2023 2 hours ago, Jarmo2127 said: Mobile uses a different class name. What is your site url? We can check it again easier 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!)
Jarmo2127 Posted June 30, 2023 Posted June 30, 2023 whats the best practices for images should we be using Hyphens ? for SEO >
tuanphan Posted July 1, 2023 Posted July 1, 2023 5 hours ago, Jarmo2127 said: Hey Tuanphan ... url is www.rhadleonardi.com.au Use this code .header-title-logo a:after, .header-mobile-logo a:after { content: "BUILDING DESIGN"; display: block; font-size: 16px; font-family: eurostile-extended; letter-spacing: 15px; margin-top: 15px; font-weight: normal; text-align: left; margin-left: 14px; } 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!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment