I would like to have everything lined as shown on the Joomla.org website.
How would I do this?
How do I make a footer like on Joomla.org? Topic is solved
Moderator: General Support Moderators
Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10.
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10.
-
- Joomla! Explorer
- Posts: 253
- Joined: Thu Aug 09, 2007 2:08 pm
How do I make a footer like on Joomla.org?
You do not have the required permissions to view the files attached to this post.
- pe7er
- Joomla! Master
- Posts: 24595
- Joined: Thu Aug 18, 2005 8:55 pm
- Location: Nijmegen, Netherlands
- Contact:
Qui rerum reiciendis fuga Sunt consectetur quo
You could use some CSS to align the text to the center.
See https://www.w3schools.com/css/css_align.asp
See https://www.w3schools.com/css/css_align.asp
Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com
Peter Martin, Global Moderator
Company website: https://db8.nl - Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com
- AMurray
- Joomla! Exemplar
- Posts: 9129
- Joined: Sat Feb 13, 2010 7:35 am
- Location: Australia
Re: How do I make a footer like on Joomla.org?
Do you mean not only the centred text, but also the "subscribe to our newsletter" button and the social media buttons? (since all of that is in your screenshot).
Check also the references in w3schools for icons, and buttons.
Check also the references in w3schools for icons, and buttons.
Regards - A Murray
-
- Joomla! Explorer
- Posts: 253
- Joined: Thu Aug 09, 2007 2:08 pm
- xfsgpr
- Joomla! Ace
- Posts: 1099
- Joined: Mon Feb 14, 2011 4:02 am
- Location: London
Re: How do I make a footer like on Joomla.org?
Something like this?Yes, that is what I mean.
How do I do it all in line?

Code: Select all
<div class="text-center text-white" style="background-color: #1f2f5f;color:#fff">
<div class="container pt-4">
<section class="mb-4"><a href="https://facebook.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-facebook-f"></i></a> <!-- Twitter --> <a href="https://twitter.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-twitter"></i></a> <!-- Google --> <a href="https://google.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-google"></i></a> <a href="https://instagram.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-instagram"></i></a> <a href="https://linkedin.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-linkedin"></i></a> <a href="https://github.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-github"></i></a></section>
</div>
<div class="text-center p-3">© 2023 Copyright: <a href="https://joomla.org/" class="text-light">joomla.org</a></div>
</div>
-
- Joomla! Explorer
- Posts: 253
- Joined: Thu Aug 09, 2007 2:08 pm
Re: How do I make a footer like on Joomla.org?
Yes. Exactly. Thank you very much.
xfsgpr wrote: ↑Mon May 29, 2023 3:01 amSomething like this?Yes, that is what I mean.
How do I do it all in line?
Code: Select all
<div class="text-center text-white" style="background-color: #1f2f5f;color:#fff"> <div class="container pt-4"> <section class="mb-4"><a href="https://facebook.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-facebook-f"></i></a> <!-- Twitter --> <a href="https://twitter.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-twitter"></i></a> <!-- Google --> <a href="https://google.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-google"></i></a> <a href="https://instagram.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-instagram"></i></a> <a href="https://linkedin.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-linkedin"></i></a> <a href="https://github.com" class="btn btn-link btn-floating btn-lg text-light m-1" role="button" data-mdb-ripple-color="dark"><i class="fab fa-github"></i></a></section> </div> <div class="text-center p-3">© 2023 Copyright: <a href="https://joomla.org/" class="text-light">joomla.org</a></div> </div>