Hi, is there any way to view the module horizontally?
Support
Horizontal search module
Public
Closed
Joomla! version (x.y.z)
6.0.2
Extension Version (x.y.z)
1.21.0
Your Role
Site Owner
Latest post by jirka.Řapek on Tuesday, 13 January 2026 17:19 EET
jirka.Řapek
sakinho
Please try this css:
.jfilters-filters-container {display: flex;gap: 2rem;}
Kind regards,
Sakis Terzis
Founder and Lead Developer
jirka.Řapek
Yes, it already works, only when there are more fields in the filter, the ones on the right get lost in the mobile view. Can't you style it with the code?
sakinho
That's the problem with the horizntal alignment.
You can add a flex-wrap to go to the next line, when their width exceeds that of their container.
.jfilters-filters-container {display: flex;gap: 2rem;
flex-wrap: wrap}
Sakis Terzis
Founder and Lead Developer
jirka.Řapek
Great job, thank you!