Jump to content

hanna38

Member
  • Posts

    41
  • Joined

  • Last visited

Reputation Activity

  1. Like
    hanna38 got a reaction from paul2009 in password for single video-clips on website possible?   
    THANK YOU SO MUCH!!!! ☺️🙏🙏 
  2. Love
    hanna38 reacted to paul2009 in password for single video-clips on website possible?   
    On Squarespace 7.1, if you click the '+' icon on any store page and select Video On Demand, a popup will guide you through the process of creating a videos page and adding it to a member area:
      
    In addition to site-wide passwords, there are also page passwords that can be used to hide an individual page or collection. The way you do this will depend on whether you want to share a page of videos (for example using a Videos Page on Squarespace 7.1 or an individual video by adding a Video Block to a page.
    Of course this differs from Member Areas in that everyone uses the same password to access a password-protected page. Also, it's worth noting that page passwords don't provide a good experience if users need to navigate between different protected pages. Even if the password is the same on each page, they'll be prompted to type it in each time.
    Did this help? Please give feedback by clicking an icon below  ⬇️
  3. Thanks
    hanna38 reacted to paul2009 in password for single video-clips on website possible?   
    They can upload up to 30 minutes of videos, directly to Squarespace and then protect them with either page passwords or Member Areas.
    If they choose to use Member Areas, these billing plans come with additional video storage.
  4. Like
    hanna38 reacted to paul2009 in How to change the calendar start of the week from Sunday to Monday?   
    This is not something you can change yet. The first day of the week cannot be modified with code.
    When new features are added to Squarespace their teams are aware of the need to make these suitable for an international market but there are still some older areas of the platform that remain very US-centric, and this is one of them.
    I'm hopeful that when Squarespace update their old YUI3 calendar block they'll add some customisation options to make this possible.
  5. Love
    hanna38 reacted to paul2009 in template 7.1 (moksha live) - css code for events title alignment needed   
    You should be able to centre the event metadata this with the following (add to Design > Custom CSS😞
    .eventitem-column-meta { text-align: center; }  
    This appears to be a standard H1 heading - 28px, normal font weight (400).
     
  6. Like
    hanna38 reacted to tuanphan in Hamburger Menu Nav across all devices (version 7.1)   
    Can you share site url? We can help easier.
     
    Can you describe in detail again? Thank you
  7. Like
    hanna38 reacted to tuanphan in [Free template] Pricing Table   
    Some free code to create Pricing Table.
    Table 01.

    1. Add 2 Markdown Blocks with syntax
    #### Standard $19 Per Month * Free custom domain * SS Security * Unlimited Storage * SEO Features * Premium Templates * Contributors * Premium Extensions [Sign Up][1] [1]: https://beaverhero.com 2. Add Code Block & Insert this code
    <style> .markdown-block { background: #F2F5F7; margin-left: 17px; margin-right: 17px; transition: all 0.25s; } .markdown-block:hover { transform: scale(1.04); } /* title */ .markdown-block h4 { font-family: monospace; margin-bottom: 5px; padding-top: 20px; } /* price */ .markdown-block p:nth-child(-n+4) { font-family: monospace; } .markdown-block h4+p { font-size: 2em; } /* list */ .markdown-block ul { list-style: none; padding-left: 0; margin-bottom: 0; } .markdown-block ul li { color: #626262; padding: 5px; } /* Line between price - list */ .markdown-block ul li:first-child:before, .markdown-block ul li:last-child:after { content: ""; background: rgba(255,255,255,0.75); height: 1px; width: 50%; display: block; margin: 0 auto; margin-bottom: 20px; } .markdown-block ul li:last-child:after { margin-top: 20px; margin-bottom: 0; } /* buttons */ .markdown-block p:last-child { padding: 20px; } .markdown-block a { background: #0091CE; color: #fff; border-radius: 3px; padding: 10px 30px; display: inline-block; } /* Center all text */ .markdown-block * { text-align: center; } /* remove text padding */ .markdown-block p { margin-top: 0; margin-bottom: 0; } </style> Table 02.

    1. Add 2 Markdown Blocks with syntax
    #### Standard $19 Per Month * Free custom domain * SS Security * Unlimited Storage * SEO Features * Premium Templates * Contributors * Premium Extensions [Sign Up][1] [1]: https://beaverhero.com 2. Add Code Block & Insert code
    <style> /* title */ .markdown-block h4 { background: #0098D9; color: #fff; padding-bottom: 5px; font-family: monospace; margin-bottom: 0; } /* price */ .markdown-block p:nth-child(-n+3) { background: #00A8EE; color: white; font-family: monospace; } .markdown-block h4+p { font-size: 2em; } /* list */ .markdown-block ul { list-style: none; padding-left: 0; background: #354153; margin-top: 0; margin-bottom: 0; border-top: 1px solid #293341; color: #A0ABBF; } .markdown-block ul li { border-bottom: 1px solid #293341; border-top: 1px solid #424F64; padding: 5px; } /* buttons */ .markdown-block p:last-child { background: #354153; border-top: 1px solid #424F64; padding: 20px; } .markdown-block a { background: #0091CE; color: #fff; border-radius: 3px; padding: 10px 30px; display: inline-block; } /* buttons hover */ .markdown-block a:hover { background: #0082B9; } /* Center all text */ .markdown-block * { text-align: center; } /* remove text padding */ .markdown-block p { margin-top: 0; margin-bottom: 0; } </style> Code by Tuan.
    Table style from Codecanyon
    Will update many other tables soon.
  8. Like
    hanna38 reacted to RolandFuseHub in letter superscript   
    @hanna38This works for me as well: https://lingojam.com/SuperscriptGenerator Add the number, and copy the outcome on the right. No need for Markdown.
  9. Like
    hanna38 reacted to tuanphan in Hamburger Menu Nav across all devices (version 7.1)   
    Can you share site url? What is your problem?
  10. Like
    hanna38 reacted to tuanphan in How to force mobile menu to remain on desktop site - v. 7.1   
    Thank you. I just tweaked your code to work on my site, 7.1
    Here is code
    /* 768 for tablet - desktop - 992 for desktop */ @media screen and (min-width:768px) { /* hide navigation */ .header-nav { display: none; } /* Hide header button */ .header-actions { display: none; } /* show burger */ .header-burger { display: flex; } /* Show overlay mobile menu */ .header--menu-open .header-menu { opacity: 1; visibility: visible; } }  
  11. Like
    hanna38 got a reaction from paul2009 in letter superscript   
    @paul2009: thank you for ALL your help, information and instruction!!!!!
    hope to manage and solve in future with that now. I'm very happy and thankful now 😊🙏
    best, hanna
  12. Like
    hanna38 reacted to paul2009 in letter superscript   
    Hi Hanna
    You can discover the Block-ID by using the browser's developer tools.
    I wrote two guides that may help you to do this - Finding CSS ID and Class Selectors and In Squarespace, what are the differences between #block-yui and #yui selectors? - I hope these help.
    Here is a quick screen-share of me finding the ID (block-yui_3_17_2_1_1590567959265_6881) on your page:

     
    Once you have found the correct ID, you can use the code provided earlier (see this post) with the new ID. 
    Let me know how you get on.
    -Paul
     
  13. Like
    hanna38 reacted to paul2009 in letter superscript   
    For help on the forum, no donation is required or expected 😀. We enjoy giving back.
    A simple click on 'thanks' or 'like' is very welcome if a post is helpful. 
     
  14. Like
    hanna38 reacted to tuanphan in letter superscript   
    Add Code Block > Then change text
    <table style="width:100%"> <tr> <th>Year</th> <th>Description</th> </tr> <tr> <td>Jill</td> <td>Smith</td> </tr> <tr> <td>Eve</td> <td>Jackson</td> </tr> </table> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 15px; text-align: left; } table#t01 { width: 100%; background-color: #f1f1c1; } </style>  
  15. Like
    hanna38 reacted to paul2009 in letter superscript   
    Please provide a working link to the page. If your site isn't live yet, please set a site password and tell us what it is. 
  16. Like
    hanna38 reacted to paul2009 in letter superscript   
    Thanks for the site info. You can solve these by adding the following to Design > Custom CSS:
    #block-yui_3_17_2_1_1590322605217_4469 p {   text-align: center;   margin-block-end: 0;   margin-block-start: 0;   line-height: 1.3em; } Adjust the spacing between lines of text by changing the line-height. A value of 2em will leave a blank line between each line of text.
    For the benefit of others who read this post:
    This snippet is for the Brine-family Squarespace 7.0 site quoted in the author's question. If used on another site, the block's ID will need to be substituted for the ID used above (shown in black). Each ID is unique.
     
  17. Like
    hanna38 reacted to paul2009 in letter superscript   
    @hanna38 It will depend where you want to use this, for example in the body text or a header.
    In the body text, you can use a Markdown Block instead of a Text Block and then insert this:
    <p>Mag.<sup>a</sup></p> If you need it as a H1 Header, you'd use this instead:
    # Mag.<sup>a</sup> If you need more help, please provide a working link to the page in your question. If your site isn't live yet, please set a site password and tell us what it is. 

    Let me know how you get on.
    -Paul
×
×
  • 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.