machined.
Machined V3
Machined V3
  • About
  • Quickstart
  • Change log
    • 2025-04-01: Brand Voice beta
    • 2025-03-24: Bulk Research, Language fixes and more
    • 2025-03-16: Stability AI images
    • 2025-02-22: Improvements and bug fixes
    • 2025-01-14: Reduced costs
    • 2024-12-26: Projects
    • 2024-12-10: Improvements and bug fixes
    • 2024-11-12: Custom Outlines GTM
    • 2024-10-06: Humanizer GTM
    • 2024-09-23: Model updates
    • 2024-09-10: Custom Outlines beta
    • 2024-08-25: UX Improvements
    • 2024-08-17: Humanizer improvements
    • 2024-07-22: GPT-4o-mini
    • 2024-06-12: Humanizer beta
  • Who is Machined for?
    • Startups
    • Content Sites
    • Marketing Agencies
  • Walkthroughs
    • Configuring OpenAI API Keys
    • CMS Connections
      • Connecting to WordPress
      • Connecting to Webflow
    • Creating Clusters
      • Auto-Pilot Clusters
      • Manual Clusters
    • Writing Articles
    • Featured Images
    • Publishing
      • Publishing to WordPress
      • Publishing to Webflow
    • Exporting
      • Copy as Rich Text
      • Download as HTML
      • Download as Markdown
      • Download Featured Images
    • Webhooks
    • Research
  • Content Structure
    • Overview
    • Content Types
    • Custom Outlines
    • Custom Briefs and Directions
  • VOICES
    • Overview
    • Built-in Voices
    • Custom Voices
  • Further Customization
  • Research
    • Overview
  • Automated Research
  • Directed Research
  • Linking
    • Overview
  • Internal Linking
  • External Linking
  • IMAGES
    • Overview
    • Stock Photos
    • DALL-E 3
    • Stability AI
  • Troubleshooting
    • OpenAI API Key
    • WordPress integration
  • SEO Strategy
    • Internal Linking
    • External Linking
    • Topical Authority
    • Content Clusters
    • Long-tail Keywords
    • Keyword Cannibalization
    • Reader Engagement
    • Bounce Rate
Powered by GitBook
On this page
  • Publish Status
  • Broken Styling

Was this helpful?

  1. Walkthroughs
  2. Publishing

Publishing to Webflow

Publishing to Webflow with one click

PreviousPublishing to WordPressNextExporting

Was this helpful?

Publishing to Webflow in one-click works for 99% of websites - once you've connected your website, you simply select it from the list and click "Publish".

If you are having issues with broken tables or lists, please see

Publish Status

Machined allows you to publish to "draft", "staged" or "live" status.

Broken Styling

Webflow has a known issue where html tables and lists which are nested inside RichText elements are not displayed correctly in the Webflow Designer or Preview. This can make it look like the content wasn't published/copied correctly, but this is not the case - the content is just fine and it's Webflow that is displaying it incorrectly.

There are two cases to be aware of:

  • Tables/lists look broken in Designer/Preview only

    • Nothing to do, the designer is broken but your website is just fine.

  • Tables/lists look broken in Designer/Preview and on the Live published website

    • Your theme is missing some styling - follow the steps below to add your own css styles

Fix RichText styling issues

Give your RichText element a class name that identifies it clearly, like blog-content:

Add custom code to style the tables inside your RichText element, using the class above:

Some example styling is below to get you started - but you should style this to match your site:

<style>
.blog-content table {
  margin-top: 30px;
  margin-bottom: 20px;
}

.blog-content th {
  padding: 2px 30px 2px 10px !important;
  margin-bottom: 5px !important;
  margin-right: 10px !important;
  text-align: left;
}

.blog-content td {
  padding: 2px 30px 2px 10px !important;
}

table, th, td {
  border: 1px solid #e6e6e6;
  border-collapse: collapse;
}
</style>

Even after styling the table this way, it will still look broken in both the Webflow Designer and Preview - however it will be correctly styled in the published version.

if you're still having issues with this, please reach out on our in-app chat and we can help.

Broken Styling