Jump to content

melody495

Circle Member
  • Posts

    772
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by melody495

  1. You are very welcome 😊 do shout if you need any further help. All the best
  2. Hi, this is likely happening for a number of reasons. size of video, internet speed, browser etc SquareSpace has some tips on video requirements, fallback image etc. You can find all the information here Adding background videos These steps will help, but I do find that sometimes the video will still be slow to show, hence causing a "flash" when it briefly shows the background colour. If you are familiar with CSS: - you could change the background colour to be more suitable, - set a background image to load before all the related video elements Hope it helps. Let me know how it goes.
  3. Hi, Custom CSS has been moved. You can find it here Website -> Website Tools (under the Utilities section) -> Custom CSS
  4. Hi @SLDC it should be a case of lining up the blocks so one is right underneath the other. Is there excess space on your upper summary block that can be dragged down?
  5. Hi, in short, no. There are a number of posts on the forum about this. Here has some suggestions of workaround Here is more information from SquareSpace: Gallery blocks
  6. @Jl87 Hi, did you figure it out? it doesn't seem to be an issue anymore, at least on the iPhone XR that I tested above.
  7. Actually, can you let me know where you are not seeing the blog title on your summary block? Because on your homepage, the blog titles are showing for your summary blocks. Your summary blocks are overlapping, but assuming it's work in progress and not an issue.
  8. Hi @ghostpep___ click on the summary block, click on the pencil icon to edit, it's under the Design tab. Hope it helps. Let me know how it goes.
  9. Thanks. I can see your Site Title is set to Genopy. Google looks at your homepage and decide if it can determine your site name, if not it will display the url. I can see from your homepage that the only reference to the text Genopy is in your footer, in the copy right. It is part of the LTD, and not on its own. So there really isn't any reference to Genopy in your homepage. That is probably why google doesn't have enough information to determine your site name. - You don't have an H1 text. Including Genopy in your H1 text can help google. - or you could include Genopy in your "Building a healthier...". This is H2, but in the absence of H1, this could take precedence. - include Genopy in your homepage. At present, the only reference is part of your copy right, it's nestled in a long string. And the logos are images, not text, so they won't help google to determine your site name. BUT, even with all these, Google can still decided to show the url rather than Genopy. It is up to Google and you can really only try and help them. This is not a SquareSpace specific thing, it is applicable for all website building. Hope this helps.
  10. Hi, can you share a screenshot to show your site title and page SEO title? Your homepage should have the main title using Heading 1 text. If you share your site url, I could have a look? If everything looks ok, you can request a re-index for a specific page on Google search console, have you tried this? https://support.google.com/webmasters/answer/9012289#request_indexing
  11. Hi, I'm not at my laptop so apologies for the poor formatting. See purple highlight, the first is your block ID, the second is the element where your text is, which is h3. So keep your code the same, just update the selectors following your block ID to be h3 instead. Like below, so replace ".sqs-block .sqs-block-content" with "h3" #your_block_id h3 { }
  12. Hi @Jl87 you are not targeting the correct element. You need h3.
  13. Hi @april44, are you using a template (7.0)? I can't reproduce this in a 7.1 test site. The autocomplete is set to "false".
  14. Hi, Google tries to display what it detects as the site title. You can help it by checking your site title, SEO page title, H1 text. Are they all set? And then submitting a page index on Google Search Console should be faster than submitting a new site map.
  15. Hi, for what you're describing, I would just duplicate the page under Not Linked. If you are happy with the changes, you can then link the new page and unlink/delete the old page. That way you won't need a whole new site to just test out some minor changes.
  16. You are very welcome 😊 Please do give my post a thumbs up and mark as the solution to help others find the solution easier. It's actually the opposite. inline-block will respect the height. You can read more here! CSS inline vs inline-block important overrides any other styling that may be applied to the element. More here How to use !important in CSS web dev is very different to C++, I can't say I miss it. I'm sure you'll pick it up in no time! Have fun 😄
  17. Hi @michellecox Just to make sure I've understood correctly, SquareSpace allows you to choose the font you use for Headings and Paragraphs. But if you want to use an additional font to those 2, then you need to upload your own custom font. What font is your website using for Headings and Paragraphs? And which other font do you want to use? To use Custom Fonts in SquareSpace you need to use Custom CSS. I often refer to this step-by-step guide. How to upload custom fonts in SquareSpace. Have you tried that? If you have and it's not working as you expected, please share your website url then the community can try and help.
  18. Hi, yes in Custom CSS. You might need to add !important // This applies to all <a>, choose specific selector where appropriate a { display: inline-block !important; } But this will apply to all your links. Do you just need your Contact page fixing? If so, you need to target just those 2 text blocks, like this /* Fix overlapping underline for Contact page */ #block-6d6d9f00c1175ee65925, #block-63307b2791fe7834a89d { a { display: inline-block !important; } } Click save, refresh page. Let me know how it goes.
  19. You're welcome 😊 glad it's working for you. You could probably simplify your CSS code, you would need to check for your site. To remove all underline site wide a { text-decoration: none; // most can be removed with this line. might need !important background-image: none; // some might need to be removed with this line. might need !important } To remove underline for footer only footer a { text-decoration: none; // most can be removed with this line. might need !important background-image: none; // some might need to be removed with this line. might need !important }
  20. Did support get back to you on this? What did they say? See below, these are the CSS that sets the underline for your links. You can see the box is overlapping, going into the lower line, hence the underline issue. You can change a number of these CSS to make your underline not overlap. But I think try this. // This applies to all <a>, choose specific selector where appropriate a { display: inline-block; } This will apply to all a tags. If you only want this for the contact page, you can either use the collection ID or each block ID to target specific texts/pages. Then you won't need the CSS you've used to remove underline for all links site wide. Let me know how it goes.
  21. Hi @Bhavik not sure what you mean by "later changing the user interface", but I wouldn't suggest it as a use case for building a website for clients. Depends on your clients, but most people won't be familiar with coding enough to use developer mode. And once developer mode is turned on, you can't turn it off without losing all custom code. Before deciding, you should read the SquareSpace docs thoroughly. You should be able to find all of your answers and much more from there. Tldr; wouldn't recommend unless you have a very specific use case and you've understood the consequences of turning developer mode on (and off).
  22. Hi @DenaW are you trying to remove all underline from links on your website? Or just additionally the footer links? Remove all underline - just targeting just a should work, but you can also add a to your existing CSS //Remove Link Underline a, h1,h2,h3,h4,p,code,nav { a,span { background-image: none!important; text-decoration: none!important; } } Additionally remove footer links only - add footer to your existing CSS //Remove Link Underline h1,h2,h3,h4,p,code,nav, footer { a,span { background-image: none!important; text-decoration: none!important; } } Save and refresh after editing. Let me know how it goes.
  23. Hi @MynameisJen please share a screenshot of the issue you are seeing so the community can help easier. If you are referring to the Gallery block, you do have the option to select from the library. Content -> Upload Media -> + -> Search Images. Let me know how it goes or if something else you are referring to.
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.