Jump to content

daniellemoonlit

Member
  • Posts

    5
  • Joined

  • Last visited

Reputation Activity

  1. Like
    daniellemoonlit got a reaction from tuanphan in My CTA buttons disappear if I have an image background in my footer?   
    No it managed to somehow fix itself, thank you so much anyway! 
  2. Like
    daniellemoonlit reacted to creedon in Typewriter & delete effect? TypeIt or something similar   
    I can help with some of the issues.
    First remove the opening and closing left tags. They aren't doing anything.
    Change the opening h1 tag to the following.
    <h1 class="preSlide slideIn" style="transition-timing-function : ease; transition-duration : 0.8s; transition-delay : 0.321951s; margin : auto; text-align : center;"> I added margin and text-align properties.
    To the .type span span ruleset in Design > Custom CSS add the following property/value pair.
      margin : auto; The above is centering elements.
    As to the text getting cut off I don't have a solution at this time. You could increase the height property on the .type > span ruleset but instead of cutting off the text at the bottom you would begin to see the tops of the other lines.
    Let us know how it goes.
  3. Like
    daniellemoonlit reacted to sylvainamatoury in Carousel with text   
    I copied it onto here so that lives forever, this is not my own work.
    This works like a dream Super simple step by step process just for Squarespace!
    http://www.muno.space/code-snippets/rotating-testimonials
    First, from the Home menu your Squarespace site, click Settings → Advanced → Code Injection. Once on the Code Injection menu, paste the following code into the textbox titled Header:
    <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
    The next thing we want to do is determine the page that we want to post the testimonials on. On the page you choose, click the settings icon and then switch to the Advanced tab. In the box entitled Page Header Code Injection, enter the following code:
    <script src="//cdnjs.cloudflare.com/ajax/libs/ResponsiveSlides.js/1.53/responsiveslides.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $(".rslides").responsiveSlides({ timeout: 5000, pager: true }); $('.rslides_tabs li a').css('background-color', $('figcaption.source').css('color')); var elementHeights = $('.rslides li').map(function() { return $(this).height(); }).get(); var maxHeight = Math.max.apply(null, elementHeights); $('.rslides li').height(maxHeight); }); </script>
    You can edit the above code to customize how your slider works. To change the time that each slide stays, increase or decrease the number next to timeout (measured in milliseconds). To remove the dots from under the screen, switch pager from true to false.
    Once that is in, we will put in the Custom CSS. By putting the CSS, the slider will look right once we put our information in. To do this, head to the main menu, then go to Design → Custom CSS. In the box, paste in the following code:
    .testimonialSlider { position: relative; } .rslides { position: relative; list-style: none; overflow: hidden; width: 100%; padding: 0; margin: 0; li { -webkit-backface-visibility: hidden; position: absolute; display: none; width: 100%; left: 0; top: 0; &:first-child { position: relative; display: block; float: left; } } img { display: block; height: auto; float: left; width: 100%; border: 0; } } .rslides_tabs { list-style: none; -webkit-margin-before: 0; -webkit-margin-after: 0; -webkit-padding-start: 0; padding: 0; text-align: center; li { display: inline; padding: 0 10px; a { text-indent: -9999px; overflow: hidden; -webkit-border-radius: 15px; -moz-border-radius: 15px; border-radius: 15px; background: #ccc; background: rgba(0,0,0, .2); display: inline-block; _display: block; -webkit-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3); -moz-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3); box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3); width: 6px; height: 6px; } } .rslides_here a { background-color: #222; } }
    Now that the styling is in, all that is left is for you to enter your testimonials. First, create a code block. Using the code below, enter your testimonials in place of 'Your Text Here' and your sources in place of 'Your Source Here'. If you want to enter more than 4 testimonials, simply follow the pattern and copy and paste the information with the
    <li></li> tags (including the li). If you want to enter less, just delete the
    <li> sections that you are not using.
    <div class="testimonialSlider"> <ul class="rslides"> <li> <div class="sqs-widget sqs-block-modelsync sqs-block-quote sqs-block quote-block"> <div class="sqs-block-quote-content sqs-block-content"> <figure> <blockquote> <span>“</span> Your Text Here <span>”</span> </blockquote> <figcaption class="source">— Your source here </figcaption> </figure> </div> </div> </li> <li> <div class="sqs-widget sqs-block-modelsync sqs-block-quote sqs-block quote-block"> <div class="sqs-block-quote-content sqs-block-content"> <figure> <blockquote> <span>“</span> Your Text Here <span>”</span> </blockquote> <figcaption class="source">— Your source here </figcaption> </figure> </div> </div> </li> <li> <div class="sqs-widget sqs-block-modelsync sqs-block-quote sqs-block quote-block"> <div class="sqs-block-quote-content sqs-block-content"> <figure> <blockquote> <span>“</span> Your Text Here <span>”</span> </blockquote> <figcaption class="source">— Your source here </figcaption> </figure> </div> </div> </li> <li> <div class="sqs-widget sqs-block-modelsync sqs-block-quote sqs-block quote-block"> <div class="sqs-block-quote-content sqs-block-content"> <figure> <blockquote> <span>“</span> Your Text Here <span>”</span> </blockquote> <figcaption class="source">— Your source here </figcaption> </figure> </div> </div> </li> </ul> </div>
×
×
  • 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.