:root{--ace-blue:#02AFF3;--ace-green:#2F4F2F}#main-header{box-shadow:0 2px 8px rgb(0 0 0 / .1)}``` ### Add Template Files:You can override any Divi template by copying it from parent theme to child theme:``` Parent:/themes/Divi/header.php Child:/themes/divi-child/header.php WordPress will use the child theme version ``` --- ## 🚨 Common Issues & Fixes ### Issue:Child theme not showing up **Fix:** ``` 1. Check folder name matches Template:line in style.css 2. Verify both style.css and functions.php exist 3. Check file permissions (should be 644) ``` ### Issue:Site looks broken after activation **Fix:** ``` 1. Go to Divi → Theme Options → Builder → Advanced 2. Click "Clear" for static CSS files 3. Hard refresh browser (Ctrl+Shift+R) ``` ### Issue:Can't edit child theme files

**Fix:**
```
1. Enable file editor: Add to wp-config.php:
   define('DISALLOW_FILE_EDIT',false);are matched 4. Use PHP validator:https://phpcodechecker.com/ ``` ### Issue:Customizer changes not saving **Fix:** ``` 1. Deactivate caching plugins temporarily 2. Save customizer changes 3. Reactivate caching 4. Clear all caches