Jump to content

melody495

Circle Member
  • Posts

    821
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by melody495

  1. Because it doesn't 🙃 in your screenshot, the lady icon has z-index = 13, the back-to-top has z-index=9, which is lower. Here is when I changed back-to-top z-index to 999 Suggest setting the z-index of your back-to-top to something like 999. Let me know how it goes.
  2. Hi @Jl87, unfortunately your iphone has a smaller screen size so there physically isn't enough space to keep the text on the same line. If you want to optimise for that particular screen size, then you could reduce the text size until they fit how you would like them to. Mobile devices come in different screen sizes, I'm not sure what exactly is the SquareSpace mobile view edit screen size is, but looks like it's wider than the particular iphone that you've tested on.
  3. Hi, how did you "delete" all your site margins? I can see your site-wide margin is set to 0, but this can be done in Site Styles without using Custom CSS. I would suggest doing it via Site Styles to keep it less confusing to maintain, unless there is a specific reason to do it via Custom CSS. You can target just the navigation bar margins like @Web_Solutions has provided above. I would suggest not setting Site wide margins to be zero, because then you come into issues like this page https://www.gtmenabler.com/enablerblog Unless this is the desired effect, all blog posts to be right up against the screen edges?
  4. Hi, your website is still private, please makes sure to save after changing the settings.
  5. Hi, can you add a Code block and put the below code in the code block. At the moment you have set your site wide h3 font-family to be 'NOTO Serif', this means all h3 text will be in 'NOTO Serif'. You need to decide which one you wan to use as your font for all h3 across your website, 'NOTO Serif' or 'baskerville-poster-pt'. I would probably suggest keeping 'baskerville-poster-pt' as your h3, then just change the chinese font as and when you need it. Like the below text. <h3 style="font-family: 'NOTO Serif'"> "以影像敘事,探索男性情慾" </h3> <h3> "Exploring "<em>Masculine Sensuality</em>" in " <em>Cinematic Narratives</em> </h3> If that works, you can remove your old text block. Let me know how it goes.
  6. Hi, if you think it is a SquareSpace issue, you can contact their support. But if you share a link to the page you are having the issue, the community here can try and point you in the right direction, either to a setting within SquareSpace, or with custom code. However, without seeing the issue or a link, it's harder to help you.
  7. Hi, your site is private. Please see here on How to Set a Site-Wide Password. Can you try to view your page in incognito mode and see if you are seeing the same issue?
  8. Hi, can you share a screenshot of where you've put this code? I can't see it in your CSS.
  9. Hi @Melonmade, try adding this to your Custom CSS and let me know how it goes .sqs-block-image div[data-shape-mask="circle"] img { border: red solid; // change first value to different colour border-radius: 100%; border-width: 5px; // change value for thinner/thicker border box-sizing: border-box; } This will target all your circle images. If you need to target specific images, then you need to add the specific ID for each image.
  10. Hi @kathryneade please can you share a link to your website so the community can help you easier? Assuming Montserrat is not one of the 2 fonts you've set for your website. Have you uploaded the custom font to you Custom CSS already?
  11. From my experience, copy and pasting will retain your link. But you can just test it out on a trial site?
  12. My answer below and this thread is about 7.1. No you do not have to pay for another website, because there is no such thing as a template anymore in 7.1. From the 7.1 templates you can choose from on SquareSpace's website, you can pick one and "change" to another template using Site Styles and all the native features available.
  13. Hi, @evergreendazed can you share the code where you upload the font 'Noto Serif TC'? It doesn't look like you have.
  14. Sorry couldn't help more on here. I find it easier to answer specific questions over the forum, whereas for your page because it's highly customised, I would need to sit down and look through your page and all the code to make sure they work together or work a different solution. You can drop me an email if/when you want to look at this again. Best of luck!
  15. It worked when I set the footer z-index. Try this code? footer#footer-sections { z-index:999; } If works, then add the section selector, or it'll do it for all footers. section[data-section-id="65478ecdd795af0b96df3a7c"] footer#footer-sections { z-index: 999; }
  16. H0 @Ian007, it's not working because the span tags are inside the h3 tag. In the code block, you can either replace <span> with <h3> or update the below code from #block-yui_3_17_2_1_1700906193987_12449{font-family: 'Permanent Marker', cursive, !important;} to #block-yui_3_17_2_1_1700906193987_12449 h3 span { font-family: 'Permanent Marker', cursive, !important; } Let me know how it goes.
  17. For this, you can try setting the z-index of the section below, so it is shown on top of the stick side menu bar. You have 2 options. You can set your breakpoint to be lower, so that it switches to "mobile mode" quicker, hiding the sidebar when the page is getting too crowded. To keep the breakpoint the same, and to fix the overlapping issue. Are there 2 code blocks? 1 for sticky menu, 1 for content on the right? Are your code blocks overlapping in the edit mode? If not, then you would need to do something with the width of both code blocks. It's mostly working, but would need to look at the sticky and the content side to get them to work together. In terms of another way of designing this page, hard to say without knowing more, it depends what that page is for, what do you want your audience to get from that page and does the navigation/layout serve that purpose. There are a number of workarounds/plugin options out there for side bar, although I don't know without looking if they would do exactly what you are doing right now.
  18. Hi @Jmontgomery, please can you share a link to your website? You might have included it in the post, but SquareSpace Forum is not showing it 🙃 Let's tick off the easy one first. Your code is hiding it the block on desktop. If you want to hide on mobile, and 768px is your desire breakpoint, then try replacing with the below code. I changed the media query line /* Sticky Menu */ /* Hide Block on Media Screens—This is the code I was using to get it removed from mobile @media screen and (max-width: 767px) { #block-yui_3_17_2_1_1700778324509_6890 { position: absolute; // I don't think you need this line visibility: hidden; //I don't think you need this line display: none !important; } } */ Let me know how it goes.
  19. Hi @Lynb3rg the first screenshot looks like you might have 2 overlapping text block. Can you share a link to your website or even better a video showing the issues.
  20. Nothing that can't be done with a bit of CSS magic 😉 On a serious note, if you do have a specific issue you are having with the blog post page, curious to hear about them and see if we can find a none-code solution.
  21. @ZOLIVE @Franc @phoenix1202 Hi guys, this is a peer-to-peer forum, if you are having a technical issue with the SquareSpace platform, we as users like yourselves cannot help you. Please contact their Custom Care Support.
  22. Also, I think tuanphan has some code here to do what you're looking for
×
×
  • 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.