This template utilizes the Webflow variables feature, allowing you to effortlessly modify all colors, which will be promptly updated across the entire site.
To adjust a color, navigate to the Variables panel, then choose the color you wish to modify.
In order to change the color of SVGs, Download .svg file from Assets and open it to any text editor. Change HEX color code with color of your choice and replace updated .svg file with the current file.
To adjust the font family, navigate to the Variables panel, then choose the font family you wish to modify.
If you want to change fonts, you can always go to Site Settings > Fonts. There, you will be able to upload custom fonts, use Google Fonts, or even connect your Adobe Fonts account.
Once you've uploaded a font from Site Settings, navigate to the Variables panel, then choose the font family you uploaded.
The “Starter Page” template provides a solid foundation for building your pages. It includes a pre-designed header, footer, and a blank section with a container to help you get started quickly.
Duplicate the Starter Page and start editing or adding sections from other pages.
We'll be glad to help you out with your queries. Please contact us at the Webflow template support page and you shall hear back very soon.
Duplicate the Starter Page and start editing or adding sections from other pages.
This section explains how GSAP animations are implemented in your site and
how to customize or remove them if needed.
All GSAP-powered animations are applied to elements with the class:
.has_fade_anim
What it does: Fades and slides the element into view from a direction (top, bottom, left, right, or in for just fading) based on scroll position or page load.
Each animated element can be fine-tuned using HTML data-* attributes:
<div class="has_fade_anim"
data-fade-from="left"
data-fade-offset="100"
data-duration="1.2"
data-delay="0.4"
data-ease="power4.out"
data-on-scroll="1">
Your content here
</div>
To completely disable the animation:
Option 1: Remove the class
Simply delete the has_fade_anim class from your HTML element.
Option 2: Comment/remove the JS block
In your main JavaScript file, comment out or delete this entire GSAP logic block: