Partially "fixed" text- I don't know if this is possible. Any ideas?

@pritchettnick I tried getting this to work properly with interactions but was having some trouble with rendering appropriately across browsers as typically when I’ve done it in the past it’s just for one element (like a side navigation). The current workaround is to use the CSS Position sticky feature which you’ll need to do with custom code. I used it here:
http://sticky-heading.webflow.io/

Read-Only link: Webflow - sticky-heading

<style>
.sticky-headline {
position: -webkit-sticky;
  position: sticky;
  top: 0px;}
</style>

Please note that this is a custom code work around and does not yet have full browser support: Can I use... Support tables for HTML5, CSS3, etc

Hope that this is helpful :bow: