How to Fix Common Sydney Theme Footer Issues: A Complete Guide
Content
Customizing the footer in the Sydney WordPress theme is a common task, but it can sometimes lead to unexpected layout challenges. Based on community support threads, here are the most frequent footer-related issues and their proven solutions.
1. Repositioning or Styling the Copyright Section
Many users want to move the copyright section to overlay the footer or change its appearance. This can be achieved with custom CSS.
.site-footer {
position: relative;
margin-top: -45px;
background-color: transparent;
}
.site-footer .site-info, .site-footer .site-info a {
color: rgba(255, 255, 255, 0.5);
}
To remove the copyright text entirely, navigate to Appearance > Customize > Footer > Copyright area and leave the 'Footer credits' box empty.
2. Footer Not Sticking to the Bottom of the Page
This often occurs on pages with minimal content. The solution is to ensure the footer uses proper padding instead of negative margins, which can cause inconsistent behavior.
.footer-widgets {
padding: 5px 0;
}
3. Footer Widget Columns Not Displaying Correctly
If your footer widgets are stacking vertically instead of displaying in horizontal columns, it is often a browser caching issue. Clear your browser's cache and cookies. If the problem persists, the following CSS can help control the layout.
@media only screen and (max-width: 992px) {
.footer-widgets .sidebar-column:nth-of-type(2) {
clear: both;
}
.footer-widgets .sidebar-column:nth-of-type(3),
.footer-widgets .sidebar-column:nth-of-type(4) {
width: 50%;
float: left;
}
}
4. Centering or Realigning Footer Content
To center-align widget content on mobile devices, use a CSS media query.
@media only screen and (max-width: 767px) {
#nav_menu-2 .widget-title,
#nav_menu-2 ul li {
text-align: center;
}
}
If a specific widget is not aligning correctly, check its internal width settings. For example, a SiteOrigin widget might need to be set to 100% width.
5. Adding a Background Image to the Footer
Use the following CSS to add a background image. Be cautious, as using background-size: 100% auto; can sometimes create a 1px white gap on the sides; using cover may be a better alternative.
.site-footer, .footer-widgets {
background-image: url('your-image-url.jpg');
background-size: cover;
}
6. Styling Footer Widgets (Borders, Button Colors)
To add borders and customize button colors within footer widgets, use this CSS:
.footer-widgets .sidebar-column {
border: 1px solid #fff;
padding: 10px;
}
.footer-widgets .widget .wp-block-button__link {
background-color: #07346c;
color: #fff000 !important;
}
.footer-widgets .widget .wp-block-button__link:hover {
background-color: #a20b8a;
color: #00dbff !important;
}
7. Changing Footer Heading Font Colors
To change the color of widget titles in the footer, target them with this CSS selector:
#sidebar-footer .widget .widget-title {
color: #43180A;
}
Important Note on Adding Custom CSS
All custom CSS code should be added in the WordPress Customizer. Go to Appearance > Customize > Additional CSS and paste the code into the provided box. This ensures your changes are not overwritten by theme updates.
By following these solutions, most common Sydney footer customization issues can be resolved efficiently. Always remember to clear your browser cache after making changes to see the correct results.
Related Support Threads Support
-
Reposition Copyright Sectionhttps://wordpress.org/support/topic/reposition-copyright-section/
-
Footer on homepage is not at the bottomhttps://wordpress.org/support/topic/footer-on-homepage-is-not-at-the-bottom/
-
Customize mobile footer menuhttps://wordpress.org/support/topic/customize-mobile-footer-menu/
-
wrong footer layout formathttps://wordpress.org/support/topic/wrong-footer-layout-format/
-
where I can shut down Credits-footerhttps://wordpress.org/support/topic/where-i-can-shut-down-credits-footer/
-
Video for Footerhttps://wordpress.org/support/topic/video-for-footer/
-
Resize footerhttps://wordpress.org/support/topic/resize-footer-2/
-
Mobile Footer Widgets Stackedhttps://wordpress.org/support/topic/mobile-footer-widgets-stacked/
-
Formatting footer widgetshttps://wordpress.org/support/topic/formatting-footer-widgets/
-
footer background image size “moving” divhttps://wordpress.org/support/topic/footer-background-image-size-moving-div/
-
Footer isn’t at the very bottom on 4k monitor on MS Edgehttps://wordpress.org/support/topic/footer-isnt-at-the-very-bottom-on-4k-monitor-on-ms-edge/
-
Footer 1 left alignment on desktop viewhttps://wordpress.org/support/topic/footer-1-left-alignment-on-desktop-view/
-
Number in footerhttps://wordpress.org/support/topic/number-in-footer/
-
Footer copy right area lengthhttps://wordpress.org/support/topic/footer-copy-right-area-length/
-
Make page content background transparenthttps://wordpress.org/support/topic/make-page-content-background-transparent/
-
Need an easy way to have a simple footer menu with my privacy Policyhttps://wordpress.org/support/topic/need-an-easy-way-to-have-a-simple-footer-menu-with-my-privacy-policy/
-
want to add background image to footerhttps://wordpress.org/support/topic/want-to-add-background-image-to-footer/
-
Footer front page vs pagehttps://wordpress.org/support/topic/footer-front-page-vs-page/
-
vertical centerhttps://wordpress.org/support/topic/vertical-center-3/
-
Adding homepage footer across sitehttps://wordpress.org/support/topic/adding-homepage-footer-across-site/
-
How to Change Footer Heading Font Colourshttps://wordpress.org/support/topic/how-to-change-footer-heading-font-colours/