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
- Table Builder → Advanced tab
- Find Custom CSS field
- Paste your CSS
- Preview updates in real-time
⚠️ Test Thoroughly: Custom CSS can break with plugin updates. Always test after updates and keep backups of your CSS!