How do I make a footer like on Joomla.org? Topic is solved

Everything to do with Joomla! 4.x templates and templating.

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.
Post Reply
MAD King
Joomla! Explorer
Joomla! Explorer
Posts: 251
Joined: Thu Aug 09, 2007 2:08 pm

How do I make a footer like on Joomla.org?

Post by MAD King » Sun May 28, 2023 3:20 pm

I would like to have everything lined as shown on the Joomla.org website.
How would I do this?
11.jpg
You do not have the required permissions to view the files attached to this post.

User avatar
pe7er
Joomla! Master
Joomla! Master
Posts: 24588
Joined: Thu Aug 18, 2005 8:55 pm
Location: Nijmegen, Netherlands
Contact:

Qui rerum reiciendis fuga Sunt consectetur quo

Post by pe7er » Sun May 28, 2023 7:07 pm

You could use some CSS to align the text to the center.
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

User avatar
AMurray
Joomla! Exemplar
Joomla! Exemplar
Posts: 9119
Joined: Sat Feb 13, 2010 7:35 am
Location: Australia

Re: How do I make a footer like on Joomla.org?

Post by AMurray » Sun May 28, 2023 9:25 pm

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.
Regards - A Murray

MAD King
Joomla! Explorer
Joomla! Explorer
Posts: 251
Joined: Thu Aug 09, 2007 2:08 pm

Re: How do I make a footer like on Joomla.org?

Post by MAD King » Sun May 28, 2023 9:49 pm

AMurray wrote:
Sun May 28, 2023 9:25 pm
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).
Yes, that is what I mean.
How do I do it all in line?

User avatar
xfsgpr
Joomla! Ace
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?

Post by xfsgpr » Mon May 29, 2023 3:01 am

Yes, that is what I mean.
How do I do it all in line?
Something like this?

Image

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>

MAD King
Joomla! Explorer
Joomla! Explorer
Posts: 251
Joined: Thu Aug 09, 2007 2:08 pm

Re: How do I make a footer like on Joomla.org?

Post by MAD King » Wed May 31, 2023 9:17 pm

Yes. Exactly. Thank you very much.

xfsgpr wrote:
Mon May 29, 2023 3:01 am
Yes, that is what I mean.
How do I do it all in line?
Something like this?

Image

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>


Post Reply

Return to “Templates for Joomla! 4.x”