Search Here:

Happy 20th Anniversary

Happy 20th Anniversary

bilal ayadi k8Lp1IOsZt4 unsplashPhoto by Bilal Ayadi on Unsplash

 

Over two decades, the project has embodied three core values: freedom (open licensing and transparent governance), flexibility (a powerful extension ecosystem and robust templating), and innovation (modern architecture, accessibility, and performance improvements across major releases).

Looking Back

  • 2005: The community launches Joomla, establishing a vibrant new chapter for open-source CMS development.
  • 1.x–2.x: Rapid adoption, a growing extension directory, and a strong developer ecosystem.
  • 3.x: Responsive templates, improved UX, and a mature ACL framework become hallmarks of the platform.
  • 4.x–5.x: Accessibility-first design, performance gains, modern PHP standards, and streamlined workflows for administrators and developers.

The Community

Joomla’s success is powered by people—maintainers, extension developers, designers, translators, documentation teams, event organizers, and users worldwide. Their volunteer spirit and shared purpose have sustained the project’s momentum and quality for two decades.

Why Joomla Still Matters

  • Open and sustainable: Community-driven governance and transparent development.
  • Built-in power: Advanced ACL, multilingual support, and content workflows out of the box.
  • Extensible by design: Thousands of extensions and flexible templating for custom solutions.
  • Secure and performant: Ongoing security reviews, modern PHP standards, and performance enhancements.

Looking Ahead

As we celebrate 20 years, we also look to the future: continued improvements in usability, accessibility, and developer experience; deeper integration with modern tooling; and a renewed focus on performance and sustainability. The roadmap remains guided by real-world needs and the open-source ethos that has defined Joomla from the start.

Thank you to everyone who has contributed time, code, documentation, support, and inspiration. Joomla is more than software—it is a community that builds the web together.

Happy 20th Birthday, Joomla! Here’s to the next chapter.

HTML Slider image

Is it possible to make content sliders using pure CSS & HTML only? - Read through and find out more. I will show you some smart tricks that make an awesome reusable slider using only HTMl & CSS.


Have you ever written a long article with mutch specifications inside? - These articles have their way to become very long and hard to read. There is an excellent way to intrigue your users to read more using content sliders.

The trick is to use HTML-tag <details> and <summary> in combine this will trigger the HTML to create a slider. It’s easy and fast to set up, and I will show you how to do this in easy steps.

Step 1: Create the HTML outlay

This is what we will make:

Here is the details!

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Dolor dignissimos at nam possimus doloremque minus libero cum a quos perferendis qui ipsam nostrum voluptas quaerat earum eius ipsum laborum eligendi dolorum nulla, eum excepturi vel nihil! Optio quos quidem dignissimos ratione dicta accusantium, animi possimus fugit? Possimus sequi doloremque minima ratione. Dicta ducimus animi cupiditate nulla expedita iusto nihil ipsa voluptatibus corporis, officia ullam consectetur distinctio consequuntur debitis laborum voluptatum quae eos, repudiandae nisi, culpa nesciunt qui eligendi vero! Ipsum, harum ea ipsam atque, unde laudantium quibusdam reiciendis corrupti ipsa totam laboriosam in omnis quisquam quaerat illum suscipit sequi aut?

Here is the details!

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Dolor dignissimos at nam possimus doloremque minus libero cum a quos perferendis qui ipsam nostrum voluptas quaerat earum eius ipsum laborum eligendi dolorum nulla, eum excepturi vel nihil! Optio quos quidem dignissimos ratione dicta accusantium, animi possimus fugit? Possimus sequi doloremque minima ratione. Dicta ducimus animi cupiditate nulla expedita iusto nihil ipsa voluptatibus corporis, officia ullam consectetur distinctio consequuntur debitis laborum voluptatum quae eos, repudiandae nisi, culpa nesciunt qui eligendi vero! Ipsum, harum ea ipsam atque, unde laudantium quibusdam reiciendis corrupti ipsa totam laboriosam in omnis quisquam quaerat illum suscipit sequi aut?

Here is the details!

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Dolor dignissimos at nam possimus doloremque minus libero cum a quos perferendis qui ipsam nostrum voluptas quaerat earum eius ipsum laborum eligendi dolorum nulla, eum excepturi vel nihil! Optio quos quidem dignissimos ratione dicta accusantium, animi possimus fugit? Possimus sequi doloremque minima ratione. Dicta ducimus animi cupiditate nulla expedita iusto nihil ipsa voluptatibus corporis, officia ullam consectetur distinctio consequuntur debitis laborum voluptatum quae eos, repudiandae nisi, culpa nesciunt qui eligendi vero! Ipsum, harum ea ipsam atque, unde laudantium quibusdam reiciendis corrupti ipsa totam laboriosam in omnis quisquam quaerat illum suscipit sequi aut?

To ensure reusable code, I have decided to wrap the code in a <div>. This way, we will ensure that you can maintain the same style for every slider that contains the outer <div>-class.

Now let’s get into it!

The first thing to do is to set the outer <div>. You can achieve this by saying:

<div class=”slider”> …… </div>

The content will get the outer class of .slider, which you can be given styles by using CSS.

Step 2-1: Create the slider HTML

Now its time to create the actual slider inside the <div class=”slider”>, this is done by defining the slide using the HTML-tag <details>. The syntax for the complete slider will be:

<details>
<summary>{title of the slider}</summary>
<p>Content<p>
</details>

The summary tag contains the title and stays on top when the slider is collapsed and folded out.

Step 2-2 Decide if you like to style the content inside the slider using a <div>-class.

This way, you can have multiple sliders on one page and specify each slider’s <div> to be unique. The syntax can now look as followed:

<details>
<summary>{title of the slider}</summary>
<div class=”slider-content”>
<h1>Welcomme to the specifications</h1>
<p>Hello to you!</p>
</details>

You can use any HTML inside the slider; this way, you can target the contents with plain CSS

The slider out of the box looks very straightforward. To edit this, you can use CSS to override the look if you like.

Step 3 Style slider with CSS

It is relatively easy to manipulate the look of the slider with CSS. IN this example, we will use:


.slider {
	padding: 2em;
	margin: 0;
	font-family: Arial, sans-serif;
}
.slider summary {
	padding: 1em;
	background: #ffda05;
	margin-bottom: 1em;
	cursor: pointer;
	outline: none;
	border-radius: 0.3em;
	font-weight: bold;
	transition: background 0.3s;
}

.slider summary:hover { background: #ffe036; } .slider details[open] summary ~ * { animation: sweep 0.5s ease-in-out; } @keyframes sweep { from
{ opacity: 0; margin-top: -10px; } to { opacity: 1; margin-top: 0; } }

 

Comments wanted

- LET ME KNOW IF YOU KNOW ANY OTHER WAYS TO DO THIS IN THE COMMENTS BELOW -

No comments

Leave your comment

In reply to Some User

nordvpn