Skip to main content
Skelementor Troubleshooting - Common errors and solutions

Import Errors

”reserved_class_name” Error

Cause: You’re using a reserved name like container
Solution: Use a different name like .cont, .wrapper, .site-container
/* Instead of */
.container {
  max-width: 1200px;
}

/* Use */
.cont {
  max-width: 1200px;
}
.wrapper {
  max-width: 1200px;
}
.site-container {
  max-width: 1200px;
}

”invalid_value” Error

Cause: Missing units on values that need them
Solution: Add px, %, rem, etc. to numeric values
/* Instead of */
.text-large {
  font-size: 24;
}

/* Use */
.text-large {
  font-size: 24px;
}

Duplicate Classes Error

Cause: Classes with same names already exist
Solution: Delete existing classes first, then re-import
1

Delete Existing Classes

Go to Elementor → Global Classes panel and delete the conflicting classes
2

Re-import

Import your updated CSS through Skelementor

Classes Not Working

Classes Import But Don’t Work

Possible Causes:
  • Property values use incorrect format
  • Z-index classes need position:relative
  • Elementor cache needs clearing
Solutions:
/* Check property values */
.items-center {
  align-items: center;
} /* Correct */
.items-center {
  align-items: flex-center;
} /* Incorrect */

/* Z-index classes automatically get position:relative */
.z-10 {
  z-index: 10;
  position: relative;
}

Empty Variants in Global Classes

Cause: Property type not supported by parser Solution: Check that CSS property is in the supported list

Troubleshooting Steps

Step 1: Delete Specific Classes

Delete the specific failing classes in Elementor’s Global Classes panel

Step 2: Import in Smaller Batches

Import 20-30 classes at a time to avoid timeouts

Step 3: Check CSS Syntax

Look for missing semicolons, units, etc.

Step 4: Clear Elementor Cache

Go to Elementor → Tools → Regenerate CSS

Step 5: Nuclear Reset

If all else fails:
1

Delete ALL Global Classes

Go to Elementor → Global Classes panel and delete everything
2

Delete ALL CSS Variables

Remove any global CSS variables if they exist
3

Re-import Fresh

Import your CSS fresh through Skelementor

Performance Issues

Slow Import Process

Solutions:
  • Import in smaller batches (20-30 classes)
  • Check server PHP memory limit
  • Ensure stable internet connection

Classes Not Applying

Solutions:
  • Clear browser cache
  • Clear Elementor cache
  • Check for CSS conflicts
  • Verify Elementor v4 compatibility