Skip to main content
This is your source of truth for the stable selectors used to theme the Creator Dashboard.

🎯 Contextual IDs (Page-Specific)

Use when you want to style a particular screen/step without touching the rest.

Form Steps

SelectorDescription
#cc-targeted-css-add-products-containerAddProductsStep main container
#cc-targeted-css-product-search-inputProduct search input field
#cc-targeted-css-finish-products-buttonComplete products selection button
#cc-targeted-css-product-imageProduct images
#cc-targeted-css-modal-button-overlayGradient background behind floating buttons
#cc-targeted-css-product-modalBackground to product modals
#cc-targeted-css-product-gridContainer for product grids/carousels
#cc-targeted-css-product-imageProduct featured image
#cc-targeted-css-save-product-buttonSave individual product button
#cc-targeted-css-product-search-overlayBackground to search for a specific product
#cc-targeted-css-custom-welcome-containerCustomFormWelcomeStep container
#cc-targeted-css-continue-buttonContinue button in custom welcome
#cc-targeted-css-verification-codeEmail verification code input
#cc-targeted-css-drop-details-containerDropDetailsStep container
#cc-targeted-css-drop-title-inputDrop title input field
#cc-targeted-css-drop-description-inputDrop description textarea
#cc-targeted-css-drop-continue-buttonDrop details continue button
#cc-targeted-css-drop-step-containerDropStep container
#cc-targeted-css-drop-title-fieldDrop title field (DropStep)
#cc-targeted-css-drop-description-fieldDrop description field (DropStep)
#cc-targeted-css-drop-finish-buttonDrop completion button
#cc-targeted-css-generic-form-stepGenericFormStep container
#cc-targeted-css-onboarding-welcome-containerOnboardingWelcomeStep container
#cc-targeted-css-accept-buttonOnboarding accept button
#cc-targeted-css-email-verification-codeEmail verification in onboarding
#cc-targeted-css-personal-info-containerPersonalInfoStep container
#cc-targeted-css-first-name-inputFirst name input
#cc-targeted-css-last-name-inputLast name input
#cc-targeted-css-personal-info-continue-buttonPersonal info continue button
#cc-targeted-css-submit-step-containerSubmitStep container
#cc-targeted-css-welcome-step-containerWelcomeStep container
#cc-targeted-css-cover-imageCover image for invitations
#cc-targeted-css-brand-logoBrand image in collab highlight
#cc-targeted-css-creator-avatarCreator initials in collab highlight
.cc-general-css-collab-circlesContainers for collab highlights
#cc-targeted-css-collab-circlesCollab highlight section
#cc-targeted-css-shop-handle-inputShop handle input field
#cc-targeted-css-welcome-accept-buttonWelcome accept button (main)
#cc-targeted-css-welcome-accept-alt-buttonWelcome accept button (alternative)
SelectorDescription
#cc-targeted-css-creator-navbarMain creator navigation bar
#cc-targeted-css-form-steps-containerForm steps page container

Creator Home & Profile Settings

SelectorDescription
#cc-targeted-css-creator-home-containerCreator home page container
#cc-targeted-css-copy-link-buttonCopy shop link button
#cc-targeted-css-drop-cardIndividual drop cards
#cc-targeted-css-form-cardIndividual form cards
#cc-targeted-css-things-to-do-card-1Card for things to do 1
#cc-targeted-css-things-to-do-card-2Card for things to do 2
#cc-targeted-css-things-to-do-card-3Card for things to do 3
.cc-general-css-things-to-do-eyebrowEyebrow for things to do card
#cc-targeted-css-edit-storefront-headerMain header
#cc-targeted-css-edit-storefront-subtitleMain subtitle
#cc-targeted-css-your-forms-headerForms header
#cc-targeted-css-your-drops-headerDrops header
#cc-targeted-css-things-to-do-headerThings to do header
#cc-targeted-css-creator-update-containerCreator update page container
#cc-targeted-css-profile-picture-uploadProfile picture uploader
#cc-targeted-css-first-name-editFirst name edit field
#cc-targeted-css-last-name-editLast name edit field
#cc-targeted-css-shop-handle-editShop handle edit field
#cc-targeted-css-shop-title-editShop title edit field
#cc-targeted-css-shop-bio-editShop bio edit field
#cc-targeted-css-primary-color-editPrimary color picker
#cc-targeted-css-color-previewPreview of color
#cc-targeted-css-save-changes-buttonSave changes button
#cc-targeted-css-x-iconX social icon
#cc-targeted-css-tiktok-iconTiktok social icon
#cc-targeted-css-instagram-iconInstagram social icon
#cc-targeted-css-youtube-iconYoutube social icon
#cc-targeted-css-pinterest-iconPinterest social icon

🌐 General Classes (Universal)

Use when you want consistent styling across the whole dashboard.
ClassDescription
.cc-general-css-headerHeaders, titles, primary text
.cc-general-css-textBody/secondary text
.cc-general-css-inputInputs, textareas, form controls
.cc-general-css-buttonAll buttons
.cc-general-css-button-overlayTransparent overlay behind buttons
.cc-general-css-bullet-iconAll bullets/lists
.cc-general-css-carousel-arrowAll carousels
.cc-general-css-modal-backgroundBackgrounds for modals
.cc-general-css-collab-circlesContainers for collab highlights
.cc-general-css-sectionContainers/sections/content areas
.cc-general-css-navigationNav bars, back buttons, navigation controls
.cc-general-css-screen-backgroundFor setting global backgrounds

💡 Usage Guidelines & Syntax

Target specific pages

#cc-targeted-css-creator-home-container { /* styles */ }
#cc-targeted-css-drop-card { /* styles */ }

Apply universal styling

.cc-general-css-button { /* all buttons */ }
.cc-general-css-header { /* all headers */ }

Combine for precise control

#cc-targeted-css-onboarding-welcome-container .cc-general-css-button { /* onboarding buttons only */ }

Naming Convention

ItemPattern/Value
IDscc-targeted-css-[page/feature]-[element]
Classescc-general-css-[type]
Prefixcc- (CreatorCommerce)

Specificity Hierarchy

ID > Class > Element. Prefer IDs for unique, page-specific elements; classes for reusable, universal styling. Minimize !important.