Web Design, Squarespace, Tips & Tricks kaliedwards Web Design, Squarespace, Tips & Tricks kaliedwards

HOW TO CREATE A RAINBOW TEXT EFFECT ON YOUR WEBSITE

Sometimes it's fun to just add a random, pretty effect to your website, just because. Because who doesn't like rainbows? And since the answer to that is "No one!", why not add some rainbows to your website?

Sometimes it's fun to just add a random, pretty effect to your website, just because. Because who doesn't like rainbows? And since the answer to that is "No one!", why not add some rainbows to your website?

Let's do it.

How to create a rainbow text effect on your website:

  1. First, add a CODE content block to your page.

  2. Then add this snippet of code and change YOUR TEXT GOES HERE to whatever you'd like your text to say:

<style>

.rainbowheaddisplay: blockmargin:autobackground: linear-gradient(330deg, #e05252 0%, #99e052 25%, #52e0e0 50%, #9952e0 75%, #e05252 100%);  -webkit-background-clip: text-webkit-text-fill-color: transparent;

}  </style><body>

    <h1 class="rainbowhead">YOUR TEXT GOES HERE</span></h1>

</body>

 And that's it! You should now have rainbow text effect on your Heading 1 text! You can change this to any heading or font size you need by changing the "h1" to match the following:

<h1> = Heading 1
<h2> = Heading 2
<h3> = Heading 3
<p> = Normal 

And that's it! Isn't it pretty?


The following information was created for use with templates made with Squarespace 7.0.
Stay tuned for more tips and tricks for the new 7.1 platform!


 

need even more help with squarespace?

Skip the overwhelm and have your website
designed and launched in just 5 days!

LEARN MORE
Read More
Web Design, Squarespace, Tips & Tricks kaliedwards Web Design, Squarespace, Tips & Tricks kaliedwards

HOW TO CREATE A SLIDER WITH TEXT BLOCK OVERLAY

Adding a slider can create a lot of dynamic engagement with your content. I think this is a great item to feature on a custom blog layout! You can also add it to the homepage, or anywhere really! 

 Adding a slider can create a lot of dynamic engagement with your content. I think this is a great item to feature on a custom blog layout! You can also add it to the homepage, or anywhere really! 

This quick customization allows you to customize the design of the caption that appears on top of the image. By adding a background box and some pretty text, your audience will definitely get clicking!

Ready to learn how? Let's do it.

How to create a slider with text block overlay
on your Squarespace website:

  1. First, add a Slider content block to your page (Gallery > Slideshow)

  2. Then add this snippet of code below to your Custom CSS (Design > Custom CSS)

  3. To change the color of the text or background box, change the bold parts of the code below.

 

/* slider with text overlay */

.sqs-block-gallery .sqs-gallery-block-slideshow { 
max-height: 500px !important;
.sqs-gallery-design-stacked-slide {
  max-height: 500px !important;
  overflow: hidden;
  img {
    transition: all ease-in-out 300ms !important;
  }
}
.meta {
  background-color:
white;
  max-width: 60% !important;
  transition: all ease-in-out 700ms !important;
-webkit-transition: all ease-in-out 700ms !important;
-moz-transition: all ease-in-out 700ms !important;
-ms-transition: all ease-in-out 700ms !important;
}
.meta-title {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 20px;
color: #
042663;
}
  
.meta-description p {
  text-align: center;
color: #9DB0D8;
  font-size: 12px;
  letter-spacing: 1px;
  padding-top: 4px;
   max-width: 550px;
}
 .meta-description a:link { 
    color: #
9DB0D8;
     text-align: center !important;
}
  
.sqs-gallery-design-stacked-slide:hover {
img {
    -webkit-filter: blur(3px);
  filter: blur(3px);
}
}
@media (max-width : 667px) {
.meta {
  display: block !important;
  max-width: 70% !important;
  min-width: 70% !important;
  left: 50% !important;
}
.meta-title {
  font-size: 12px;
}
.meta-description p {
  display: none;
}
}
}

 

You should now have a slider with text block overlay!

 

All you have to do now is upload your images and add your Title Captions!

(To do this, hover over a slider image and click the gear icon. Then add your title! If you want to add the "Read Post" text, simply add this to the description box and link it to whatever page or post you'd like.) 

 

And that's it!


The following information was created for use with templates made with Squarespace 7.0.
Stay tuned for more tips and tricks for the new 7.1 platform!


need even more help with squarespace?

Skip the overwhelm and have your website
designed and launched in just 5 days!

LEARN MORE
Read More
Web Design, Squarespace, Tips & Tricks kaliedwards Web Design, Squarespace, Tips & Tricks kaliedwards

HOW TO DISPLAY GALLERY CAPTIONS ON A MOBILE DEVICE

Ever notice how sometimes a perfectly amazing feature set up for a desktop browser doesn't quite translate like you want it to on mobile? I've found a way to modify the gallery caption display so that it will always work no matter what device you're on!

Ever notice how sometimes a perfectly amazing feature set up for a desktop browser doesn't quite translate like you want it to on mobile? It's a bummer and can make you rethink the whole design. 

This happened to a client's site recently when I set up a gallery of her art work and displayed the name of each painting as a caption. The default gallery caption option displays the caption when you hover your mouse over the image. Cool! But not so cool on a mobile device where it just doesn't display at all! Womp womp.

So, I've found a way to modify the caption display so that it will always work no matter what device you're on.

  1. First, head into the Design panel.

  2. Click Custom CSS.

  3. Paste in the following code:

/*** DISPLAY GALLERY CAPTION ***/

.yui3-lightbox2 .sqs-lightbox-meta {
opacity: 1 !important;
background: rgba(0, 0, 0, 0.7) !important;
}
@media only screen and (max-width: 1024px){
.yui3-lightbox2 .sqs-lightbox-meta{
bottom: 0px !important;
}
}

 And that's it!
You should now be able to view the gallery captions
on both mobile and desktop browsers.


The following information was created for use with templates made with Squarespace 7.0.
Stay tuned for more tips and tricks for the new 7.1 platform!


Read More