How to Fix Sydney Theme Color and Styling Issues with Custom CSS
Content
Many Sydney theme users encounter situations where the built-in Customizer options don't fully control their site's appearance. This is a common point of confusion, especially after theme updates that can introduce new CSS selectors or change existing ones. Based on community discussions, this guide covers the most frequent color-related issues and their solutions.
Common Sydney Theme Color Problems
Users frequently report that color settings for the following elements don't work as expected:
- Menu text color on desktop or mobile views
- Button text, background, and hover states
- Footer widget text and link colors
- Header contact info hover colors
- Specialized widget styles (e.g., Call-to-Action buttons, Skills bars)
- Pagination button colors
Why This Happens
These issues typically occur for a few key reasons:
- Theme Updates: New Sydney versions sometimes change CSS class names or specificity, overriding previous Customizer settings.
- CSS Specificity: The theme's default styles may have higher specificity than the Customizer-generated CSS.
- Plugin Conflicts: Third-party plugins can inject CSS that conflicts with theme styles.
- Browser Caching: Old CSS files might be cached in your browser, preventing new styles from appearing.
Most Effective Solution: Custom CSS
The most reliable way to overcome these styling limitations is by adding custom CSS. Nearly all resolved threads in the Sydney community involved adding targeted CSS code to the Additional CSS section.
How to Add Custom CSS
- Go to your WordPress Dashboard
- Navigate to Appearance → Customize
- Open the Additional CSS section
- Paste your custom CSS code
- Publish your changes
Proven CSS Solutions from the Community
1. Changing Menu Colors
For menu items that revert color or don't respond to Customizer settings:
.main-header #mainnav ul li a {
color: #your-color-here !important;
}
2. Fixing Mobile Menu Colors
When mobile menu colors differ from desktop:
.mainnav.toggled ul > li > a,
#mainnav-mobi ul > li > a {
color: #f76500;
}
3. Customizing Button Styles
For button background, text, and hover states:
.header-elements .roll-button {
border-color: #ff0000;
background-color: #ff0000;
color: #ccc;
}
.header-elements .roll-button:hover {
border-color: #fff000;
background-color: #fff000;
color: #000;
}
4. Adjusting Footer Widget Colors
For footer text and link colors:
#sidebar-footer a {
color: #ffffff;
}
5. Modifying Header Contact Info Hover Color
.header-contact a:hover {
color: pink;
}
Important Considerations
- Always use a child theme when adding custom code to prevent changes from being overwritten by theme updates.
- After adding CSS, clear your browser cache and any caching plugins to see changes immediately.
- Use browser developer tools (F12) to inspect elements and identify the correct CSS selectors for your specific situation.
- Test changes on different screen sizes to ensure mobile and desktop views work correctly.
When to Seek Additional Help
If these solutions don't resolve your issue, consider that:
- Your specific Sydney theme version might have unique selectors
- You may have plugin conflicts that require deactivation testing
- Your header layout choice might affect which CSS selectors work
For persistent issues, the Sydney user community can often provide targeted solutions when you share your site URL and specific problem description.
Related Support Threads Support
-
Sydney primary color changehttps://wordpress.org/support/topic/sydney-primary-color-change/
-
Tg Page Pagination Buttonshttps://wordpress.org/support/topic/tg-page-pagination-buttons/
-
Color Change Layout Builder Widget FP: Skillshttps://wordpress.org/support/topic/color-change-layout-builder-widget-fp-skills/
-
Design customization widget “Sydney FP: Call-To-Action”https://wordpress.org/support/topic/design-customization-widget-sydney-fp-call-to-action-2/
-
link colorhttps://wordpress.org/support/topic/link-color-58/
-
Changing hardcoded colour to correct themehttps://wordpress.org/support/topic/changing-hardcoded-colour-to-correct-theme/
-
Header Buttor Colour (Click to Begin)https://wordpress.org/support/topic/header-buttor-colour-click-to-begin/
-
Can’t change menu text colorhttps://wordpress.org/support/topic/cant-change-menu-text-color-2/
-
Custom Button Font & Colorhttps://wordpress.org/support/topic/custom-button-font-color/
-
Color Issues Sydney Freehttps://wordpress.org/support/topic/color-issues-sydney-free/
-
Social Media Icon Color Hover for Team section on templatehttps://wordpress.org/support/topic/social-media-icon-color-hover-for-team-section-on-template/
-
Design customization widget “Sydney FP: Call-To-Action”https://wordpress.org/support/topic/design-customization-widget-sydney-fp-call-to-action/
-
Text on menu bar is changing color by itself on Sidney themehttps://wordpress.org/support/topic/text-on-menu-bar-is-changing-color-by-itself-on-sidney-theme-2/
-
Color menu items small screenshttps://wordpress.org/support/topic/color-menu-items-small-screens/
-
Button Text color not customizablehttps://wordpress.org/support/topic/button-text-color-not-customizable/
-
Text on menu bar is changing color by itself on Sidney theme.https://wordpress.org/support/topic/text-on-menu-bar-is-changing-color-by-itself-on-sidney-theme-3/
-
Button Text Color Customization Not Workinghttps://wordpress.org/support/topic/button-text-color-customization-not-working/
-
Scroll buttonhttps://wordpress.org/support/topic/scroll-button-2/
-
PlugIn “MaxButtons”https://wordpress.org/support/topic/plugin-maxbuttons/
-
color of footer widgetshttps://wordpress.org/support/topic/color-of-footer-widgets/
-
Blog: link colours of the article navigationhttps://wordpress.org/support/topic/blog-link-colours-of-the-article-navigation/
-
Color of links after hover over gone with Sydney updatehttps://wordpress.org/support/topic/color-of-links-after-hover-over-gone-with-sydney-update/
-
Variation of the transparency of the sydney menu barhttps://wordpress.org/support/topic/variation-of-the-transparency-of-the-sydney-menu-bar/
-
Top Menu Button Colorhttps://wordpress.org/support/topic/top-menu-button-color/
-
Button Text Color Customization Not Displayedhttps://wordpress.org/support/topic/button-customization-not-displayed/
-
Sydney mobile menu click colorhttps://wordpress.org/support/topic/sydney-mobile-menu-click-color/
-
Link color in footerhttps://wordpress.org/support/topic/link-color-in-footer/
-
Contact info header hover colourhttps://wordpress.org/support/topic/contact-info-header-hover-colour/
-
Color of scroll buttons iconhttps://wordpress.org/support/topic/color-of-scroll-buttons-icon/
-
Scrollbar colorhttps://wordpress.org/support/topic/scrollbar-color-3/
-
Navigation buttonshttps://wordpress.org/support/topic/navigation-buttons-13/