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
Web Design, Squarespace, Tips & Tricks kaliedwards Web Design, Squarespace, Tips & Tricks kaliedwards

HOW TO REMOVE THE DATE FROM YOUR SQUARESPACE BLOG POSTS

If you would like to remove the blog date and time from Squarespace, there is an easy bit of CSS code you can use to make it work. The catch is that you have to do a bit of research first. I've listed the steps below, which are super simple, but they work best if you're working within a Chrome browser.

 

Squarespace is so great for its Drag and Drop abilities, but once in a while, SquareSpace gets a little stubborn and won't let you change the simplest things. One of those things is your blog post publish date.

If you would like to remove the blog date and time from SquareSpace, there is an easy bit of CSS code you can use to make it work. The catch is that you have to do a bit of research first. I've listed the steps below, which are super simple, but they work best if you're working within a Chrome browser.

How to remove the date from your Squarespace blog posts:

  1. First, move your cursor over the date on your blog and right click.

  2. Click "Inspector". This should bring up all the code from your SquareSpace site.

  3. Find the "Class" that contains the date. The "class" name should look something like this: <time class="thisisthenameoftheclass">March 31, 2016</time>

  4. Copy and paste the class name into your Custom CSS. To get here, go to DESIGN -> CUS TOM CSS and paste in the code below. (Make sure you change .insertclass to the name of your class from Step #3).

.insertclass{ display: none; }

 

And that's it! You should now have hidden all the dates from showing on your Squarespace blog.


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