APIsChangelog
Log In

Remove style

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

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

Parameters

  • Style: StyleObject - The style to remove.

Returns

Promise<void>

A Promise that resolves to undefined.

Example

// Retrieve the style by name
const retrievedStyle = await webflow.getStyleByName(styleName)

if (retrievedStyle) {

  // Remove Style
  await webflow.removeStyle(retrievedStyle)
  console.log(`Style: ${styleName} was removed`)

} else {
  console.log(`Style ${styleName} not found.`)
}