Display Issues¶
Card Appears Blank¶
Symptoms: Card loads but shows no content
Solutions:
- Check area has entities: Verify area contains devices/entities
- Enable debug mode: Check browser console for errors
- Try minimal config:
Icons Not Showing¶
Symptoms: Entity icons missing or showing as squares
Solutions:
- Check icon names: Ensure MDI icon names are correct
- Update Home Assistant: Newer versions have more icons
- Check internet connection: Icons load from CDN
Layout Issues¶
Symptoms: Card layout broken or overlapping elements
Solutions:
- Check container size: Ensure card has adequate space
- Clear CSS cache: Hard refresh browser
- Check theme compatibility: Try with default HA theme
- Disable custom CSS: Temporarily remove custom styles
Room Icon Not Showing¶
Symptoms: Room icon missing from card
Solutions:
- Check hide_room_icon feature:
- Verify area icon: Check if area has icon set in Home Assistant
- Check entity icon: If using custom entity, verify it has an icon
Problem Indicator Missing¶
Symptoms: Problem counter doesn't appear
Solutions:
- Check labels: Ensure entities have "problem" label
- Verify area assignment: Problem entities must be in same area
- Check entity states: Problem entities must have active/inactive states
- Test with simple entity:
Note: If the problem indicator appears but clicking it doesn't open the dialog, ensure you're clicking directly on the numbered badge (not just the area around it). The indicator should show a pointer cursor on hover and enlarge.
Climate Borders Not Showing¶
Symptoms: Expected temperature/humidity borders missing
Solutions:
- Check thresholds configuration:
type: custom:room-summary-card
area: living_room
thresholds:
temperature:
- value: 75 # Must be configured or defaults to 80
humidity:
- entity_id: sensor.humidity # maybe need an entity if not using defaults
value: 55
- Verify sensor device classes: Sensors must have
device_class: temperatureordevice_class: humidity - Check threshold values: Ensure sensor values exceed the configured thresholds
- Disable skip_climate_styles: Remove this feature if climate borders should show