For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Resources
Get started
ReferenceGuidesExamplesChangelog
ReferenceGuidesExamplesChangelog
  • Designer API
    • Introduction
    • Getting Started
    • Webflow CLI
    • Error Handling
    • App Modes
  • Elements
    • Creating & Retrieving Elements
    • Element Properties & Methods
    • Element Types & Methods
  • Styles
      • Get all styles
      • Get style by name or path
      • Create style
      • Set style name
      • Remove style
      • Is combo class
      • Get style type
      • Is from library
      • Get parent style
    • Managing Style Properties
    • Managing Variable Modes
  • Components
  • Variables & Collections
    • Variable Collections
    • Variables
    • Variable Modes
  • Assets
  • Pages & Folders
  • Utilities
    • User Events & Notifications
    • App Intents & Connections
  • Additional Resources
    • API Playground
    • FAQs
LogoLogo
Resources
Get started
On this page
  • webflow.removeStyle(Style)
  • Syntax
  • Parameters
  • Returns
  • Example
  • Designer Ability
StylesCreating & Retrieving Styles

Remove style

Was this page helpful?
Previous

Check if a style is a combo class

Next
Built with

webflow.removeStyle(Style)

Remove an unused style from a site. In order to remove the style, it must not be used by any elements throughout the site.

Syntax

1webflow.removeStyle(style: Style): Promise<void>

Parameters

  • Style: StyleObject - The style to remove.

Returns

Promise<void>

A Promise that resolves to undefined.

Example

1// Retrieve the style by name
2const retrievedStyle = await webflow.getStyleByName(styleName)
3
4if (retrievedStyle) {
5
6 // Remove Style
7 await webflow.removeStyle(retrievedStyle)
8 console.log(`Style: ${styleName} was removed`)
9
10} else {
11 console.log(`Style ${styleName} not found.`)
12}

Try this example

Designer Ability

Designer AbilityLocaleBranchWorkflowSitemode
canModifyStyleBlocksAnyAnyCanvasDesign