In one of the websites we manage, we have the Citadela theme installed. The theme is versatile and has some good features. However, the theme itself lacks support for lifetime buyers, and they do not reply to any messages. I want to suggest improving the limited footer section of the theme.
The Problem
The issue with the footer is that the theme has a very narrow container for the footer. Typically, content occupies only 25 to 50 percent of the available space, which prevents effective use of the area.
The Solution
In order to take full advantage of this space and use the full width of the footer, you need to add the following snippet in WordPress.
/* It makes the footer useful for actual components/widgets */
.site-footer .footer-widgets-area {
max-width:100%;
}
.site-footer .footer-widgets-area .widget {
max-width:100% !important;
}
You can use an external CSS file, a code snippet plugin, or insert the code in the header of the child theme. I hope this helps anyone using the Citadela theme who wants to create a more complex footer with blocks or widgets.
Leave a Reply