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}

Designer Ability

Designer AbilityLocaleBranchWorkflowSitemode
canModifyStyleBlocksAnyAnyCanvasDesign