Scrollyteller for WordPress – English version

Download here:

https://www.spacemoped.com/wp-content/uploads/2023/12/scrollyTeller195img.zip

Scrollyteller is a child theme based on the free version of Generatepress. Generatepress is a good theme with a lot of flexibility for layout, typography, color selection, etc. The goal of Scrollyteller is that visual storytelling in WordPress should be as simple and free as possible. I also recommend to install Generateblocks which is a good plugin for controlling Layout and a few other things. I recommend dropping page builders such as Elementor, which are generally known for poor performance and force you to use a giant dashboard that lives its own life inside WordPress.

Visual storytelling and interaction

Scrollyteller allows you to put full-screen images in a linear narrative context together with other elements (text, images, graphics, shapes, etc.) that can scroll over the background to drive the story. This guide is intended to take you through itstep by step. 

To move the story forward, the user must scroll forward or backward. The scrolling has been tested for quite wild scrolling and seems to handle it, but please contact us if you experience any problem in any way. gauheg@oslomet.no

This is how you make a story

This is a technical tutorial. You need to ge the pictures (or other media) and create the narrative yourself. There are some paid solutions for scrollytelling but this aims to let you do it for free in WordPress.

Checklist:

  • A fairly new WordPress installation with admin rights
  • Scrollyteller theme installed (child theme built on generatepress)
  • Images / graphics for background:
    • Large images, recommended 2560px width approx. 50-70% jpeg compression out of photoshpo. Try to keep file sizes below 400kb.
    • For graphics use <svg> or PNG format with 2560px width
      • If you have vector, export to <svg> or .png. If your vector graphic has features (advanced gradients in Illustrator etc.) that are unsupported by <svg> you can export to a bitmao format such as JPG, PNG, AVIF or WebP.
    • You can also use common WordPress elements in as a fullscreen background.
    • You can also use emebedded external graphics from services such as Datawrapper, or embed an interactive map such as a Leaflet map to make a background for your narrative.
  • Recommended: Generateblocks for layout control.

Step 1. – Create a new page

Log in to WordPress and create a new page.

Inside the page editor, you must choose that the page should be full width so that we can have images that cover the entire screen:

  • If the right-hand menu is not visible, press this symbol in the top right corner:
  • Make sure the ‘Page’ tab is selected.
  • Under the ‘Content Container’ option, select ‘Full width’.

Step 2. – Create the story

It works like this:

Add as many photos or background graphics as you want to the story. You can add them all at once, or add one at a time as the development of the story progresses.

For each image that should be full screen you must:

  • Select ‘Full size’ as the size.
  • Give the image the CSS class name ‘bgimage’:
    • With the image selected go to the right menu, select ‘Block’.
    • Set the images ‘scale’ property to ‘Cover’
    • Scroll all the way down and click on ‘Advanced’
    • In the text box ‘Additional CSS Class(es) you should write ‘bgimage’ like this:

Now Scrollyteller knows that this image / graphics should work as a background image when certain elements are on the page.

Tips about pictures:

It is easier if the image has a centered composition to work on different screen sizes. But there is also a nice free plugin that lets you set an off centre focal point so the mobile crop can be off center.

Large surfaces in an image can be used as a background for overlying text.

An image must have at least one element that will scroll over the image, for example a small piece of text. You can divide longer texts into several text elements (paragraphs, headings) that make up the story. It is also possible to have a longer, more compact text and then it is important to choose a font and a style that suits this. You can also use smaller images or graphic elements that can scroll over the page.

To create a simple example, we will have three text elements that will scroll over an image:

Scrollyteller works in such a way that you must first insert the image that will be in full screen and then give it the class name ‘bgimage’ as described above.

After the full screen image and before the next image, you must insert all elements that will scroll over the image. All elements that will scroll over th ebackground must have the class name ‘swoosh’.

Insert three paragraph element with some text, give each element class name ‘swoosh’

Insert at least one more background image (so you have at least two) and the class name ‘bgimage’.

Make more ‘swoosh’ texts etc.

Select ‘Save draft’

Select ‘Preview’

Did it work? If yes, read on. If no 🙁 send an email to gauheg@oslomet.no

That was really it. Insert as many images as you need into your story and create swoosh text.

But wait a minute, there’s more. Read on if you want more control over Layout.

3. Layout of ‘swoosh’ elements that scroll over

These are class names in Scrollyteller that you can use to position the text to the right, left or centered with reduced width. You can use this without installing Generateblock.

Here are the CSS classes in generatepress:

waw – makes white text with a dark outer glow. Useful for getting readable text no matter what is in the background. waw is short for ‘white always works’. It does!

bsw – balck text with white glow. Short for ‘black sometimes work’

rightie – places the element on the right side

leftie – places the element on the left side

centrist – places the element in the middle and takes approx. one third of the screen width

halfwidth -places the element in the middle and takes approx. half the screen width

bookie – Suitable for a longer piece of text and uses a smaller font size. Uses black serif text over a white partially transparent background box.

Here is the full CSS:

.rightie{

padding-left: 0%;

width: 40%;

left: 50%;

}

.centrist{

padding-left: 32%;

padding-right: 32%;

/*width: 40%;*/

/*left: 30%;*/

}

.halfwidth{

padding-left: 20%;

padding-right: 20%;

font-size: 1em;

}

.bookie{

font-size: 1.2em;

color: black;

background-color:rgba(255,255,255,0.6);

text-shadow:0px 0px 16px rgba(255,255,255,0.4);

font-family: serif;

padding: 2em;

text-align: left;

}

.leftie{

padding-right: 0%;

width: 40%;

left: 10%;

}

Protip:

You can also add your own CSS class to gain more control over the expression. You can add CSS classes to your theme installation by going to:

Appearance > Customize

Additional CSS

Layout control with Generateblocks, and a bit about CSS

By using Generateblocks, you get a lot of control in a relatively intuitive way. A nice thing about Generateblocks is that you have to deal with relatively common web elements with common properties, but you can do it in a more intuitive way than, for example. with coding. For example, the most ‘common’ block type is a container, which is roughly the same as a div element that you can adjust with CSS. Remember that no matter how nice the dashboard you use is (regardless of whether it’s Wix, Squarespace, WordPress, Elementor, Generateblocks or something else), all settings end up as HTML/CSS, so you should understand html/css if you want to operate the web . I mean that Generateblock’s knowledge gives a little more understanding of the web than e.g. Wix and elements.

Responsive websites

Responsive means that the page adapts to the screen it is on. When we create websites, viewing on mobile should have top priority. The easiest is to use emulated mobile viewing with developer tools in the browser. I recommend using chrome (if you can live with Google) and/or firefox as web browsers.

  • Dev tools in Chrome: Right-click and select ‘Inspect. Or keyboard shortcut F12 (Win / Lin) Ctrl + Shift + i (Win / Lin) Cmd + Opt + i (Mac)
  • Dev tools in Firefox: : Right-click and select ‘Inspect. Or keyboard shortcut F12 (Win / Lin) Ctrl + Shift + i (Win / Lin) Cmd + Opt + i (Mac)

To see the page in emulated mobile view, you must click

Simple example: margin-left and max-width, CSS and Generateblocks

On a website it is nice to be able to place and control text and other elements horizontally. Vertically, it is more common for e.g. text takes the space it takes and it can vary slightly with the screen size, but horizontally it’s nice to have control. Text that goes from the left image edge to the right image edge is not so readable on large screens (PC / TV), while on small mobile screens we will usually use a larger part of the screen width for the text. In CSS (by creating classes like those above) and in Generateblocks we can control this.

max-width is a simple rule to control the maximum width of an element. You can use different units to limit the screen width. I recommend px (pixels) or maybe em (1em = 1 ‘character size’).

margin-left is useful because we read from left to right. Here you can use, for example, 20%, 40%, 60% as a unit for large screens and then reduce it for smaller screens. You can fix that in Generateblocks.

Generateblocks example – use the Container element

If you, for example, want a number of ‘swoosh’ elements, it is likely that you will want them placed equally on the page. Then it is fine to put all the elements into a container element and then you can control the horizontal position and maximum width for all by adjusting the container they are inside. Here’s how you do it:

  • Click on the ‘+’ to select the block type
  • Select type ‘Container’ from generateblocks.
  • Give the container element max-width: 400px and left-margin: 40%
  • Adjust the max-width and left-margin and try to find something that works with your story and your images.
  • 50-70 characters on a line are considered to provide good readability
  • Place new elements (text, images, graphics, etc.) into the container block.
  • Give each element css class ‘swoosh’
  • When you have finished adding contents to the container, press the blue square to get to the container element, then Enter.
  • Add a new background image, new container with new ‘swoosh’ etc…

There is a lot more you can try with generateblocks. You can e.g. place container or element to the right or left to create a dialogue effect, a bit like text display on a mobile. But then you have to pay extra attention to how the right-left placement works precisely on mobile, and perhaps make your own adjustments for mobile screens. Which brings us to…

Adaptation to mobile screen

Emulated mobile display via developer tools in chrome/firefox is very useful and much better than wordpress’s tools for testing mobile layout. Use developer tools a lot! This is how you start it:

A big advantage of generateblocks is precisely that you can set your own settings for mobile viewing. This is also common in CSS by using something called ‘media queries’. More about that in MOKV2400 if you end up there.

You can adapt all(?) generateblocks element to mobile view and it’s quite easy. These blocks have their own row of tabs right below ‘Page | Block’ which shows three icons: PC, tablet and mobile. Click on the device you want to adapt to and set your own positioning values ​​for mobile. For example, it is not such a good idea to have a margin-left: 40% on a mobile screen, then you get a very slim paragraph. On the other hand, max-width can be the same on mobile and PC display. Remember that even if you choose ‘mobile’ in generateblocks, you should check that it actually looks good on mobile by using preview and then testing with developer tools.