Office Hours: Mo-Fr: 8:00-19:00 | Sa: 8:00-14:00

Common CSS Customizations

Hover Effects

.ppt-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

Gradient Buttons

.ppt-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
}

Custom Badge Styling

.ppt-badge {
  background: #FF6B6B;
  color: white;
  border-radius: 20px;
  padding: 5px 15px;
}

Where to Add CSS

  1. Table Builder → Advanced tab
  2. Find Custom CSS field
  3. Paste your CSS
  4. Preview updates in real-time
⚠️ Test Thoroughly: Custom CSS can break with plugin updates. Always test after updates and keep backups of your CSS!