How to Customize Your Sinatra Theme Footer: A Complete Guide
Content
Customizing the footer in the Sinatra WordPress theme is a common request, but the process isn't always intuitive. Based on community discussions, users frequently want to adjust the layout, spacing, and content of their footers. This guide compiles the most effective solutions from across the Sinatra support community.
Common Footer Customization Challenges
Users often report issues with:
- Adjusting the footer height and padding
- Changing the footer layout and column structure
- Modifying the appearance of social media icons
- Controlling where the pre-footer section is displayed
- Fixing display issues in specific browsers
Solutions and Methods
1. Changing Footer Layout and Columns
To set up a basic footer with logo on left and content on right:
- Go to Appearance » Customize » Footer » Main Footer
- Choose a two-column layout
- Navigate to Appearance » Widgets
- Add an Image block with your logo to Footer 1
- Add your contact information to Footer 2 using List or Paragraph blocks
For a single-column footer, use this CSS in Appearance » Customize » Additional CSS:
.sinatra-footer-column {
display: none;
}
.sinatra-footer-column:first-child {
display: block;
}
#sinatra-footer .sinatra-footer-column {
flex-basis: 100%;
max-width: 100%;
}
2. Adjusting Footer Height and Padding
The footer height automatically adjusts to its content. To modify padding instead, use this CSS:
#sinatra-footer .sinatra-footer-column {
padding-top: 30px;
padding-bottom: 30px;
}
Adjust the pixel values as needed. The default padding is 70px.
3. Changing Social Media Icon Size
To increase the size of social media icons in the footer:
.sinatra-social-nav > ul > li > a .si-icon {
font-size: 1.5rem;
height: 2rem;
}
4. Controlling Pre-Footer Display
To show the pre-footer only on the home page (a known bug workaround):
body:not(.home) #si-pre-footer {
display: none;
}
5. Making Footer Full-Width with Contained Content
If using contained content but want a full-width footer:
#sinatra-footer > .si-container,
#sinatra-copyright > .si-container {
max-width: 100%;
}
6. Browser-Specific Issues
If your footer appears at the top of the page in IE11, ensure you're using Sinatra theme version 1.1.0 or higher, as this issue was specifically addressed in that update.
Important Notes
- Always add custom CSS through Appearance » Customize » Additional CSS
- Clear your cache after making changes, especially if using a caching plugin
- Some advanced modifications may require creating a child theme
- The Sinatra team has indicated they plan to add more footer customization options in future updates
These solutions address the most frequently asked questions about Sinatra footer customization. For more complex modifications, consider consulting WordPress development resources or hiring a developer familiar with theme hooks and filters.
Related Support Threads Support
-
How to (float:left) Footer Nav and (float:right) Copyrighthttps://wordpress.org/support/topic/how-to-floatleft-footer-nav-and-floatright-copyright/
-
How to change footer heighthttps://wordpress.org/support/topic/how-to-change-footer-height-2/
-
Homepage hero section layouthttps://wordpress.org/support/topic/homepage-hero-section-layout/
-
Insertar icono de red social en footerhttps://wordpress.org/support/topic/insertar-icono-de-red-social-en-footer/
-
Pre Footer Overlayhttps://wordpress.org/support/topic/pre-footer-overlay/
-
Footer Height not adjusting for contenthttps://wordpress.org/support/topic/footer-height-not-adjusting-for-content/
-
Set minimum width of Footer 1 for responsive layouthttps://wordpress.org/support/topic/set-minimum-width-of-footer-1-for-responsive-layout/
-
Header/Footer Scriptshttps://wordpress.org/support/topic/header-footer-scripts/
-
Pre Footerhttps://wordpress.org/support/topic/pre-footer/
-
Footer Font Sizehttps://wordpress.org/support/topic/footer-font-size-9/
-
Display footer on 404 pagehttps://wordpress.org/support/topic/display-footer-on-404-page/
-
social media icons largehttps://wordpress.org/support/topic/social-media-icons-large/
-
Pre Footer only on Home Pagehttps://wordpress.org/support/topic/pre-footer-only-on-home-page/
-
remove button from pre-footerhttps://wordpress.org/support/topic/remove-button-from-pre-footer/
-
Formatting Footerhttps://wordpress.org/support/topic/formatting-footer/
-
Footer not showing uphttps://wordpress.org/support/topic/footer-not-showing-up-5/
-
Pre Footer Buttonhttps://wordpress.org/support/topic/pre-footer-button/
-
Remove homepage padding for sinatrahttps://wordpress.org/support/topic/remove-homepage-padding-for-sinatra/
-
Footer Issue in IE11https://wordpress.org/support/topic/footer-issue-in-ie11/
-
Footer widthhttps://wordpress.org/support/topic/footer-width-9/
-
Footer Paddinghttps://wordpress.org/support/topic/footer-padding-5/
-
Footer Pushed Down when Scrollinghttps://wordpress.org/support/topic/footer-pushed-down-when-scrolling/
-
Top Bar heighthttps://wordpress.org/support/topic/top-bar-height-2/
-
Sinatra footerhttps://wordpress.org/support/topic/sinatra-footer/
-
Mobile version issueshttps://wordpress.org/support/topic/mobile-version-issues-5/
-
Footer Height and Font Colorhttps://wordpress.org/support/topic/footer-height-and-font-color/
-
Remove Theme Link on Footerhttps://wordpress.org/support/topic/remove-theme-link-on-footer/
-
Is it possible to adjust the height on the pre-footer?https://wordpress.org/support/topic/is-it-possible-to-adjust-the-height-on-the-pre-footer/
-
social media icon sizehttps://wordpress.org/support/topic/social-media-icon-size-3/
-
Adding widget section before pre footerhttps://wordpress.org/support/topic/adding-widget-section-before-pre-footer/
-
Javascript in button widget is strippedhttps://wordpress.org/support/topic/javascript-in-button-widget-is-stripped/
-
Change main footer to a single columnhttps://wordpress.org/support/topic/change-footer-to-1-column-2/
-
Form in Pre-Footerhttps://wordpress.org/support/topic/form-in-pre-footer/
-
Reduce space gap between end page and main footerhttps://wordpress.org/support/topic/reduce-space-gap-between-end-page-and-main-footer/