SquareFish Posted November 1, 2020 Share Posted November 1, 2020 Site URL: https://www.footandanklesurgery.com.au/ Hello, I want to put a logo next to the site's title in the header. If I upload a logo file, the title will not display. Would like to add the logo to the left side of the text. Also hide the title text when in mobile mode. Been trying to search the answers on these forums but haven't had much luck. Is this possible with 7.0? Thank you in advanced. Link to comment
tuanphan Posted November 2, 2020 Share Posted November 2, 2020 You can add a logo first, then we can give the code to insert title on right of logo 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
SquareFish Posted November 3, 2020 Author Share Posted November 3, 2020 ok i have added the logo back in. many thanks for the help Link to comment
tuanphan Posted November 3, 2020 Share Posted November 3, 2020 1 hour ago, SquareFish said: ok i have added the logo back in. many thanks for the help Add to Home > Design > Custom CSS a.Header-branding:after { content: "Squarespace"; color: white; margin-left: 10px; } a.Header-branding { display: flex; align-items: center; } SquareFish 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
SquareFish Posted November 3, 2020 Author Share Posted November 3, 2020 many thanks again! Link to comment
Rogue_Petunia Posted January 1, 2021 Share Posted January 1, 2021 (edited) Tuanphan - I tried this but it didn't work for me. I edited the site header so it now has a site title and a logo uploaded. Then I pasted in the CSS (Home > Design > Custom CSS). Result: only the logo is displayed. The site title will not display unless I delete the logo. Do you have a suggestion? Thank you. Edited January 1, 2021 by Rogue_Petunia Link to comment
tuanphan Posted January 2, 2021 Share Posted January 2, 2021 5 hours ago, Rogue_Petunia said: Tuanphan - I tried this but it didn't work for me. I edited the site header so it now has a site title and a logo uploaded. Then I pasted in the CSS (Home > Design > Custom CSS). Result: only the logo is displayed. The site title will not display unless I delete the logo. Do you have a suggestion? Thank you. Can you share site url? We can check 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!) Link to comment
derricksrandomviews Posted January 2, 2021 Share Posted January 2, 2021 (edited) Try using a tagline with your logo instead of a title, looks the same. Edited January 2, 2021 by derricksrandomviews Link to comment
AC101 Posted May 25, 2021 Share Posted May 25, 2021 Hi the video @derricksrandomviews @tuanphan above is super useful, do you guys know if it's possible to put a logo to the left of nav bar and a name title /site title to the right of nav bar using custom css too? Link to comment
tuanphan Posted May 26, 2021 Share Posted May 26, 2021 13 hours ago, AC101 said: Hi the video @derricksrandomviews @tuanphan above is super useful, do you guys know if it's possible to put a logo to the left of nav bar and a name title /site title to the right of nav bar using custom css too? Can you share link to your site? We can check 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!) Link to comment
DanAdrianDan Posted July 6, 2021 Share Posted July 6, 2021 Hello! I have got the same issue. www.ingeniousenglish.ro I'd like to have the site title on the right of the logo. Could you help please? Link to comment
tuanphan Posted July 7, 2021 Share Posted July 7, 2021 16 hours ago, DanAdrianDan said: Hello! I have got the same issue. www.ingeniousenglish.ro I'd like to have the site title on the right of the logo. Could you help please? Add to Design > Custom CSS /* Add site title */ .header-title-logo a:after { content: "Squarespace"; display: block; color: #1bb7c5; font-size: 24px; } .header-title-logo a { display: flex; align-items: 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
prettypositivejksnmedia Posted October 20, 2022 Share Posted October 20, 2022 @tuanphan hey, I used the code to align my header left, what code could i use to move the social icon to the right with the cart, please? Also, the cart has some issue where I used CSS and it has a separate 'bubble' around the cart, and the cart quantity, instead of one around both (and their hover command words independently too) Not sure which is my code as i have loads, but i think it's somewhere here: .header-actions-action--cart .icon {stroke: #fccfe8!important; background-color: #ff69b4; border-radius: 100px; padding-left: 1.5px!important; padding-right: 1.5px; padding-top: 1px; padding-bottom: 1px} .header-actions-action--cart .icon:hover {background-color: #fccfe8!important; stroke: black!important} .header-actions-action--cart .icon-cart-quantity:hover {color: black!important} .header-actions-action--cart .icon-cart-quantity {color: #fbb7dd!important;} website is: www.pretty-positive.co.uk Link to comment
tuanphan Posted October 22, 2022 Share Posted October 22, 2022 On 10/20/2022 at 10:03 PM, prettypositivejksnmedia said: @tuanphan hey, I used the code to align my header left, what code could i use to move the social icon to the right with the cart, please? Also, the cart has some issue where I used CSS and it has a separate 'bubble' around the cart, and the cart quantity, instead of one around both (and their hover command words independently too) Not sure which is my code as i have loads, but i think it's somewhere here: .header-actions-action--cart .icon {stroke: #fccfe8!important; background-color: #ff69b4; border-radius: 100px; padding-left: 1.5px!important; padding-right: 1.5px; padding-top: 1px; padding-bottom: 1px} .header-actions-action--cart .icon:hover {background-color: #fccfe8!important; stroke: black!important} .header-actions-action--cart .icon-cart-quantity:hover {color: black!important} .header-actions-action--cart .icon-cart-quantity {color: #fbb7dd!important;} website is: www.pretty-positive.co.uk Try this CSS /* move instagram to right */ .header-layout-branding-center-nav-center .header-actions--left { order: 4; justify-content: flex-end; } .header-actions.header-actions--right { order: 5; } 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
prettypositivejksnmedia Posted October 22, 2022 Share Posted October 22, 2022 (edited) Thank you so much! @tuanphan Can I also ask.. I have created a folder for my main navigation and titled it 'store'. I have then added my store categories to the main navigation to put them into the folder - so people can filter down what part they'd like to view. BUT on mobile when they click in to view the cateogories, the font is HUGE. What code would target this type of sub-folder menu? (currently not visible on my website and obviously not working) Thank you! Edited October 22, 2022 by prettypositivejksnmedia Link to comment
tuanphan Posted October 26, 2022 Share Posted October 26, 2022 On 10/22/2022 at 11:24 PM, prettypositivejksnmedia said: Thank you so much! @tuanphan Can I also ask.. I have created a folder for my main navigation and titled it 'store'. I have then added my store categories to the main navigation to put them into the folder - so people can filter down what part they'd like to view. BUT on mobile when they click in to view the cateogories, the font is HUGE. What code would target this type of sub-folder menu? (currently not visible on my website and obviously not working) Thank you! What is your site url + can you add it? We can check easier. If the site is live, you can also add to a duplicate site 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
prettypositivejksnmedia Posted October 26, 2022 Share Posted October 26, 2022 10 hours ago, tuanphan said: What is your site url + can you add it? We can check easier. If the site is live, you can also add to a duplicate site so this is my duplicate website (some things different), but added into the 'store' folder so you can see- hopefully it works! https://butterfly-cube-z252.squarespace.com (password: october) [lowercase] firstly, on mobile the actual options in the folder are huge in font size, secondly, how would i get the 'active navigation link hover' underline thingy, on this sub menu also. thank you so much Link to comment
tuanphan Posted October 31, 2022 Share Posted October 31, 2022 (edited) On 10/26/2022 at 6:20 PM, prettypositivejksnmedia said: so this is my duplicate website (some things different), but added into the 'store' folder so you can see- hopefully it works! https://butterfly-cube-z252.squarespace.com (password: october) [lowercase] firstly, on mobile the actual options in the folder are huge in font size, secondly, how would i get the 'active navigation link hover' underline thingy, on this sub menu also. thank you so much Add to Design > Custom CSS h2.nested-category-title.nested-category-title-padding { font-size: 20px; } .header-nav-item>a, .header-nav-folder-item>a { border-bottom: 2px solid transparent; } div.header-nav-folder-item a:hover { border-color: #fccfe8; } Edited October 31, 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!) Link to comment
prettypositivejksnmedia Posted November 1, 2022 Share Posted November 1, 2022 On 10/31/2022 at 8:19 AM, tuanphan said: Add to Design > Custom CSS h2.nested-category-title.nested-category-title-padding { font-size: 20px; } .header-nav-item>a, .header-nav-folder-item>a { border-bottom: 2px solid transparent; } div.header-nav-folder-item a:hover { border-color: #fccfe8; } Thank You, this worked for the active link, but the font sze on mobile view is still incorrect. (see image) Link to comment
tuanphan Posted November 4, 2022 Share Posted November 4, 2022 On 11/1/2022 at 7:50 PM, prettypositivejksnmedia said: Thank You, this worked for the active link, but the font sze on mobile view is still incorrect. (see image) Use this div.header-menu-nav-item * { font-size: 16px !important; } prettypositivejksnmedia 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
prettypositivejksnmedia Posted January 24, 2023 Share Posted January 24, 2023 Hi @tuanphan My site is pretty-positive.co.uk is it possible to code my header (which are 2 folders), to be with a large gap between - ideally central underneath my social media buttons. Sorry to be so awkward, basicallyi'm putting 2 businesses onto the same site to cut costs, but want them to feel fairly separate. Thank you for any help you can provide. Link to comment
creedon Posted January 24, 2023 Share Posted January 24, 2023 3 hours ago, prettypositivejksnmedia said: Sorry to be so awkward, basicallyi 'm putting 2 businesses onto the same site to cut costs, but want them to feel fairly separate. Please see the following as a possible direction. If your site is established then you'll want to make sure to use URL Mappings so that search engines can update where things are on your site. prettypositivejksnmedia 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
prettypositivejksnmedia Posted January 25, 2023 Share Posted January 25, 2023 On 1/24/2023 at 8:41 PM, creedon said: Please see the following as a possible direction. If your site is established then you'll want to make sure to use URL Mappings so that search engines can update where things are on your site. Thank you, but it says I don't have permission to see the content 😞 Link to comment
creedon Posted January 25, 2023 Share Posted January 25, 2023 20 minutes ago, prettypositivejksnmedia said: it says I don't have permission to see the content Apologies. I'll summarize. The basic idea is to use Brad Good's multi-language site code as a way to organize your two sites in one. The code Brad provides needs a modification to work with a site with multiple sub-sections with more than two characters in the sub-section path. Read the article. When you see language mentioned there think site sub-section. If you think this technique might work for your situation, tuanphan and I worked on a code modification for this, let us know. 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