Webflow lets remote teams create, prototype, and launch responsive websites without writing a line of code. In this guide we walk through every step—setting up a team workspace, designing pages together, using the CMS, and publishing a staging site for client review. Follow the instructions, use the screenshot placeholders, and copy the code blocks to start building today.
Webflow offers three Team plans. For most remote agencies the Team Pro plan is the sweet spot:
| Plan | Monthly (per user) | Projects | CMS Items |
|---|---|---|---|
| Team Starter | $35 | 10 | 500 |
| Team Pro | $45 | Unlimited | 10,000 |
| Team Business | $80 | Unlimited | Unlimited |
The Pro plan includes unlimited projects, 10 000 CMS items, and real‑time collaboration.
Each project can have different access levels. Go to **Project Settings → Permissions** and toggle:
Start with a global style guide so everyone uses the same colors, typography, and spacing.
/* Global CSS (added in Project Settings → Custom Code) */
:root{
--primary:#0066cc;
--secondary:#004080;
--font-base:"Helvetica Neue",Helvetica,Arial,sans-serif;
}
body{font-family:var(--font-base);color:#333;}
Save the style guide as a Symbol. All designers can drag the Symbol onto any page.
When two designers edit the same page, Webflow shows a colored cursor for each user. Changes are saved automatically, similar to Google Docs.
Agree on a 12‑column Flexbox grid. Set the container width to 1140 px and margins to 30 px. Document this in the project’s README.md file hosted on GitHub.
Assign the “Content Editor” role to writers. They can add, edit, and schedule posts but cannot modify layout.
Drag a **Collection List** onto the page, bind it to “Blog Posts”, and style the item wrapper. Use the following custom CSS to truncate summaries to three lines:
.summary{
display:-webkit-box;
-webkit-line-clamp:3;
-webkit-box-orient:vertical;
overflow:hidden;
}
In **Project Settings → Publishing**, enable **Staging URL** and set a password (e.g., “teamreview”). Share the link with stakeholders.
Webflow’s built‑in comment widget lets reviewers add notes directly on the live staging site. To enable:
<script>
window.Webflow = window.Webflow || [];
window.Webflow.push(function() {
Webflow.require('comments').enable();
});
</script>
Reviewers can click any element and type a comment. Comments appear in the Designer under the **Comments** panel.
When the team approves the staging site, click **Publish** → select the custom domain (e.g., www.example.com) → **Publish**. The site goes live instantly.
Remote teams often wonder whether to choose Webflow, Figma, or WordPress for collaborative site building. The table below highlights the most relevant features.
| Feature | Webflow | Figma | WordPress (with Gutenberg) |
|---|---|---|---|
| Production‑ready code | Yes – HTML/CSS/JS exported automatically | No – design only | Yes – needs manual theme setup |
| Real‑time editing | Yes (Team Plans) | Yes (Multiplayer) | No – edit lock per user |
| Built‑in CMS | Yes (up to 10 000 items) | No | Yes (unlimited with plugins) |
| Hosting included | Yes (fast CDN) | No | No (self‑hosted) |
| Custom code support | Full HTML/CSS/JS blocks | Limited (embed only) | Full via themes/plugins |
| Cost for a 5‑person team | $225/mo (Team Pro) | $50/mo (Professional) | $100/mo (managed hosting) |
For teams that need a live site with minimal hand‑off, Webflow wins on speed and code quality. Figma shines for early‑stage UI design, while WordPress remains the go‑to for complex blogs with many plugins.
Yes. Webflow supports real‑time collaboration through its Team Plans. Each member can edit pages, symbols and CMS items simultaneously, and changes are saved instantly.
Webflow keeps a full revision history. You can revert to any previous save within the last 30 days on the free tier and unlimited on the Business tier.
Publish a staging URL, enable password protection, or export a read‑only share link. Stakeholders can comment directly on the live site using the built‑in feedback widget.
No. Webflow is visual, but you can add custom code blocks for advanced interactions. The guide includes examples of HTML, CSS and JavaScript snippets.
Webflow builds production‑ready sites, while Figma is a design‑only tool. The comparison table above shows key differences in hosting, CMS, and team limits.
Webflow gives remote teams a single platform to design, manage content, and launch sites without handing off files. Set up your workspace, follow the collaborative workflow, and ship fast.