Polaris theme in Washington DC not working correctly

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2024 12:36 PM - edited 10-04-2024 12:38 PM
I have used UI builder to reset the theme back to Polaris and everything looks normal now except the top menu banner. In Dark Mode, it shows like it should but in default is not showing anything, it's like the Icons are White on White until you hover or click them. See screen shot below:
How can I get this reset to default Polaris
The dark theme banner looks correct
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2024 01:49 PM
To resolve the issue where your top menu banner icons appear as white on white after resetting the theme back to Polaris, follow these steps:
### 1. **Clear Cache**:
- Clear your browser cache and refresh the page. Sometimes cached data can prevent theme changes from fully applying.
### 2. **Reapply the Polaris Theme in UI Builder**:
- Go back to **UI Builder** and ensure the **Polaris** theme is applied globally, including all UI components.
- **Save** and **publish** the changes, then refresh the page.
### 3. **Check for Theme Customizations**:
- Open the **Theme Settings** in UI Builder and look for any custom styles or overrides that might affect the top menu banner or icons.
- Specifically, check for changes to variables like:
- `--theme-header-background-color`
- `--theme-header-icon-color`
### 4. **Reset Theme Variables**:
- If any of the above variables were customized, revert them back to the Polaris defaults.
- For Polaris:
- Icon color in light mode should be dark (`#000` or `var(--theme-header-icon-color, #000)`).
- Header background should be light (`#fff` or similar).
### 5. **Custom CSS (if needed)**:
- If the issue persists, you can manually add custom CSS to fix the icon colors. You can apply this in the **CSS section** of your theme or the **page settings**:
```css
.header-icon-class {
color: var(--theme-header-icon-color, #000); /* Ensures icons are visible in light mode */
}
```
This should restore the icons to their correct visibility in light mode. If the issue persists, double-check for any component-specific overrides or theme customizations that could be affecting the menu banner.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2024 04:27 PM
Thanks, while it wasn't the correct response, I had to use a diff tool on the default polaris theme with another instance and 1 line was incorrect so I fixed that and the theme was back to default.
Thank you for the response those