Synergy School

Client: Synergy School

Project Brief: The IT Director at Synergy (who I knew from work on an earlier project with a different org) needed the school site updated and moved off of a janky, bloated, and outdated platform. The initial brief was to “translate” the site design and site functions to WordPress. We did this as much as possible, while bringing in some new design elements and upgrading other features, like the school calendar and integrating the school blog. We also added a secondary site geared just for the students, with a colorful display for their resources and other family-related information.

5895Note: The placeholder image sizes provided are examples only. You can use images as tall as you like.

To adjust the height of the visible space, edit the max-height value in each section’s structure settings in the advanced tab.
The images are defined in the background settings of the style tab in each section. You need to add the same image to the static and hover states. The static state should have a background position of: Left 50%, Top 0%. The hover state should have a background position of: Left 50%, Top 100%.

You can adjust the speed of the scroll by adjusting the CSS in the Custom CSS box of the parent row.

.bb-scroll-screen-1 .kt-inside-inner-col {
  transition: background-position 1s linear;
}

Adjust the 1s value above to control the time the image takes to return to its static state (on mouseout)

.bb-scroll-screen-1 .kt-inside-inner-col:hover {
  transition: background-position 10s linear;
}

Adjust the 10s value above to control the speed the image scrolls on hover (on mouseover)