Joomla - Columns order in mobile version

krzysiek.stanejko
7 Posts
krzysiek.stanejko posted this 01 September 2022

Hi.
I have a problem with displaying the columns on the phones. On desktop and laptops there are 4 columns (description, picture, description, picture) in a row - it works fine. On tablets the setting for column is 50% width and it also works good - 2 columns per row.

The problem appears, when I try to view the site on the phone - columns are in mixed order. On desktop I have 1, 2, 3, 4, but phone version displays 3, 2, 1, 4. Is there a possibility to change the order of columns on mobile version only?

Thanks in advance,
Krzysiek

Hi. I have a problem with displaying the columns on the phones. On desktop and laptops there are 4 columns (description, picture, description, picture) in a row - it works fine. On tablets the setting for column is 50% width and it also works good - 2 columns per row. The problem appears, when I try to view the site on the phone - columns are in mixed order. On desktop I have 1, 2, 3, 4, but phone version displays 3, 2, 1, 4. Is there a possibility to change the order of columns on mobile version only? Thanks in advance, Krzysiek
Vote to pay developers attention to this features or issue.
10 Comments
Order By: Standard | Newest
Support Team
Support Team posted this 02 September 2022

Hello Krzysiek,

We are sorry for the issue. This shouldn't be the rule. I have tested it with another Columns, and in mobile mode it goes in the order that was in Desktop left-to-right. What I would do first is to make a theme backup and then play with the width for Columns in The Columns tab >> Width. Is there any difference if you change these values for Phones mode?

Sincerely,
Nettie

Hello Krzysiek, We are sorry for the issue. This shouldn't be the rule. I have tested it with another Columns, and in mobile mode it goes in the order that was in Desktop left-to-right. What I would do first is to make a theme backup and then play with the width for Columns in The Columns tab >> Width. Is there any difference if you change these values for Phones mode? Sincerely, Nettie
krzysiek.stanejko
7 Posts
krzysiek.stanejko posted this 04 September 2022

Hello.
The problem was caused by a simple human error - I was not the only person editing the theme. Two columns were set the Flex Order, so they were unable to display properly.

Very helpful function, described here: https://answers.themler.io/questions/67446/flex-order

Sorry for the trouble ;)
Krzysiek

Hello. The problem was caused by a simple human error - I was not the only person editing the theme. Two columns were set the Flex Order, so they were unable to display properly. Very helpful function, described here: https://answers.themler.io/questions/67446/flex-order Sorry for the trouble ;) Krzysiek
Abbas Khan
157 Posts
Abbas Khan posted this 24 December 2024

In this case, you will need to provide personal information, such as your name, email, etc. Once you complete the registration process, the app will ask you to agree to the 3-day trial. You will be able to access all the content including TV channels, shows, movies, and more for free. Once the 3 days are over, the subscription will be cancelled.
Click Here

In this case, you will need to provide personal information, such as your name, email, etc. Once you complete the registration process, the app will ask you to agree to the 3-day trial. You will be able to access all the content including TV channels, shows, movies, and more for free. Once the 3 days are over, the subscription will be cancelled. **[Click Here][1]** [1]: https://magistvpro.app/
hesteranecarpenterel
2 Posts
hesteranecarpenterel posted this 12 February 2025

Actually the view soccer random between phone, tablet or PC is different due to configuration. Online access will give better view. Maybe you should set and fix the tables to fit different devices with different configuration.

Actually the view [soccer random][1] between phone, tablet or PC is different due to configuration. Online access will give better view. Maybe you should set and fix the tables to fit different devices with different configuration. [1]: https://soccerrandom.io/
eja.ge.r.m
99 Posts
eja.ge.r.m posted this 01 May 2025

Affordability and accessibility are additional strong points. Compared to traditional cable services, FlixFox typically comes with cost-effective subscription plans, including monthly or yearly options, and sometimes even ad-supported free versions Download the latest version. It's also accessible on a wide range of devices including smartphones, tablets, smart TVs, and desktops, which means users can enjoy their favorite content anytime, anywhere.

Affordability and accessibility are additional strong points. Compared to traditional cable services, FlixFox typically comes with cost-effective subscription plans, including monthly or yearly options, and sometimes even ad-supported free versions [Download the latest version][1]. It's also accessible on a wide range of devices including smartphones, tablets, smart TVs, and desktops, which means users can enjoy their favorite content anytime, anywhere. [1]: https://theflixfox.net/
jeckleach007
3 Posts
jeckleach007 posted this 03 June 2025

Hi @krzysiek.stanejko,

This is a pretty common issue when dealing with responsive column layouts, especially if you're using float, flexbox, or certain grid systems without specifying a consistent order across breakpoints.

What’s likely happening is that your columns are stacking based on HTML source order, not visual placement. On desktop, it’s fine because they're side-by-side. But on smaller screens, they collapse in the order they’re coded, not necessarily how you want them to appear.

To fix this on mobile, you can try one of the following:

✅ Option 1: Use Flexbox with order property
If you’re using Flexbox, you can apply the order CSS property to control how columns appear in different screen sizes:

CSS

@media (max-width: 767px) {
.col-1 { order: 1; }
.col-2 { order: 2; }
.col-3 { order: 3; }
.col-4 { order: 4; }
}

Just assign these classes to your columns, and you can fully customize the stacking order on mobile.

✅ Option 2: Use CSS Grid
If possible, CSS Grid offers even more control over layout across devices, letting you specify row and column placement precisely.

Interestingly, many people faced this exact problem when watching live football on their phones — layouts would break, elements would jump around, and the user experience suffered.

But a great example of handling this well is RBTV77 APK, a site that streams live football. Their layout remains consistent and smooth across all devices, including mobile. It’s worth taking inspiration from how they structure and order their content responsively.

Let me know if you need help adjusting the CSS or layout in your Joomla template — happy to help further!

Cheers!

Hi @krzysiek.stanejko, This is a pretty common issue when dealing with responsive column layouts, especially if you're using float, flexbox, or certain grid systems without specifying a consistent order across breakpoints. What’s likely happening is that your columns are stacking based on HTML source order, not visual placement. On desktop, it’s fine because they're side-by-side. But on smaller screens, they collapse in the order they’re coded, not necessarily how you want them to appear. To fix this on mobile, you can try one of the following: ✅ Option 1: Use Flexbox with order property If you’re using Flexbox, you can apply the order CSS property to control how columns appear in different screen sizes: CSS @media (max-width: 767px) { .col-1 { order: 1; } .col-2 { order: 2; } .col-3 { order: 3; } .col-4 { order: 4; } } Just assign these classes to your columns, and you can fully customize the stacking order on mobile. ✅ Option 2: Use CSS Grid If possible, CSS Grid offers even more control over layout across devices, letting you specify row and column placement precisely. Interestingly, many people faced this exact problem when watching live football on their phones — layouts would break, elements would jump around, and the user experience suffered. But a great example of handling this well is [RBTV77 APK][1], a site that streams live football. Their layout remains consistent and smooth across all devices, including mobile. It’s worth taking inspiration from how they structure and order their content responsively. Let me know if you need help adjusting the CSS or layout in your Joomla template — happy to help further! Cheers! [1]: http://rbtv77apk.app
diarydekho
2 Posts
diarydekho posted this 11 November 2025

McDonald’s Menu With Prices offers a clear look at all your favorite meals and treats at the fast-food giant. From burgers and fries to beverages and desserts, you can easily see what’s available and how much it costs. Whether you’re planning a quick snack or a full meal, this guide makes choosing simple and hassle-free. It helps you decide without guessing, saving time and keeping your order within budget.

[McDonald’s Menu With Prices][1] offers a clear look at all your favorite meals and treats at the fast-food giant. From burgers and fries to beverages and desserts, you can easily see what’s available and how much it costs. Whether you’re planning a quick snack or a full meal, this guide makes choosing simple and hassle-free. It helps you decide without guessing, saving time and keeping your order within budget. [1]: https://statesmenu.com/mcdonalds/menu-prices/
naazs2979
2 Posts
naazs2979 posted this 17 November 2025

MovieBox is honestly one of the better movie platforms I’ve come across. Simple, organised, and actually useful.
https://movieboxph.app/

MovieBox is honestly one of the better movie platforms I’ve come across. Simple, organised, and actually useful. https://movieboxph.app/
joshbolstad360
18 Posts
joshbolstad360 posted this 17 November 2025

Yes, it’s possible to change the order of columns on mobile devices using CSS flexbox or grid with the order property. You can target only mobile screens using media queries and assign a specific order to each column so they display correctly. For example, on phones you can set the first column as order: 1, second as order: 2, and so on. This ensures your layout stays logical and readable. This technique is especially useful for showcasing services like Home Additions Tallahassee, where content order matters for clarity.

Yes, it’s possible to change the order of columns on mobile devices using CSS flexbox or grid with the order property. You can target only mobile screens using media queries and assign a specific order to each column so they display correctly. For example, on phones you can set the first column as order: 1, second as order: 2, and so on. This ensures your layout stays logical and readable. This technique is especially useful for showcasing services like [Home Additions Tallahassee][1], where content order matters for clarity. [1]: https://mcmanuskitchenandbath.com/home-additions/
kamila
2 Posts
kamila posted this 11 December 2025

You can fix the mobile column order by using CSS flexbox and the order property. Assign each column its own class and set the order inside a mobile media query. This lets you control the exact sequence on phones without changing the desktop layout.
also vist For geting Better Results : RBTV77.com

You can fix the mobile column order by using CSS flexbox and the order property. Assign each column its own class and set the order inside a mobile media query. This lets you control the exact sequence on phones without changing the desktop layout. also vist For geting Better Results : [RBTV77.com][1] [1]: https://rbtv77.com.co/
You must log in or register to leave comments