Footer branding

Viewed 120

Can we provide a feature so that from admin settings we can customize footer branding?

I know we have an option of modifying source file, building the app and that way customize the footer branding.

But, for non-coders or to make life easy I request to provide this feature to easily modify footer from admin UI.

Thanks.

3 Answers

You can already customize the footer via CSS/HTML.

Example CSS:

/* Hide default footer and define custom one */
footer.bg-light {
    display: none;
}
#custom-footer {
    background: #001133;
}

And HTML:

<footer id="custom-footer">
  <div class="py-3 container">
    <p class="text-center mb-0 small text-secondary">
    This is a custom footer. <br>
Your text <a href="https://example.com">and links</a> go here!
    </p>
  </div>
</footer>

You can go to github and submit an issue and get a list of people in the community who are willing to help.

Thanks for your suggestion.

This is a personalized feature, and is not subject to frequent changes, so we recommend using a custom feature implementation (Customize -> CSS and HTML).

Powered by Answer - the open-source software that powers Q&A communities.
Made with love © 2025 Apache Answer Meta.