Responsive direction problem - Forum

Forum Navigation
You need to log in to create posts and topics.

Responsive direction problem

In the below-attached file, I have a simple responsive app it includes only three containers.

In small screen size, the left containers stack on the right containers but I want to reverse this, how should I do?

In the below example, I want in small screen the blue container should stack on the red container.

Uploaded files:
  • You need to login to have access to uploads.

Hi @asmat. Take a look at the attached file CSS:

@media (min-width: 768px) {
    .pull-right-md {
        float: right;
    }
}

And also here:
https://stackoverflow.com/questions/19404861/bootstrap-3-pull-right-for-col-lg-only

Regards.

Uploaded files:
  • You need to login to have access to uploads.
asmat has reacted to this post.
asmat

Thank you so much @luishp.