If your Home page isn’t loading after modifying preloaders in Webflow, it's likely due to broken interactions, infinite loops, or missing content visibility settings.
1. Disable or Remove Your Preloader Interaction Temporarily
- Go to Page Settings of the Home page in the Webflow Designer.
- Check the list of Page Load interactions under Interactions panel → Page trigger → When page finishes loading.
- Disable (toggle off) or delete the preloader animation to see if the page loads properly without it.
- Publish or preview the site again to test.
2. Check Element Visibility Settings
- Select the main content wrapper (e.g., a section, div, or container that holds your Home content).
- In the Style panel, look for custom Display or Visibility settings that might have been used to hide content (e.g.,
display: none
, opacity: 0
, or visibility: hidden
). - Restore normal visibility (e.g., display: block, opacity: 100%) to make sure the content isn’t stuck invisible.
3. Audit the Interactions and Timeline
- Open the Interactions panel, locate your preloader animation, and examine all timelines and actions.
- Look for:
- Missing "hide preloader" or "show main content" steps.
- Actions that never trigger because of missing elements or incorrect conditions.
- Make sure the last step in the animation unhides or fades in your main page content.
4. Check Page Load Conditions
- If you're using a loader screen that uses a delay (e.g., 5s), reduce the delay to something short to verify it's not trapping the view.
- Avoid using Loop options on your loader unless it's meant to repeat indefinitely—otherwise, your main content may never appear.
5. Open Console Logs for Errors (Preview Mode or Live Site)
- View the page in Preview mode or publish the site.
- Inspect the page using Developer Tools → Console in your browser.
- Look for JavaScript errors, especially those referencing animation elements like
gsap
, Webflow.require('ix2')
, or custom code that could prevent load transitions.
Summary
To fix your non-loading Home page after working on preloaders, disable the preloader animation, check if main content is hidden, and review your animation timelines for breaks. Often, the issue is due to animations not ending properly or key elements never being shown again.