@asmat
Check here for bootstrap-rtl css on 3.1.3.
For Bootstrap version 3.1.3, which doesn't use Flexbox for its grid system, you'll need to rely on a different approach to reorder columns for a right-to-left (RTL) flow in responsive mode. The primary method for this in Bootstrap 3 is using the .col-xx-push-* and .col-xx-pull-* classes.
col-md-8 col-md-push-4 The "Main Content" column takes up 8 of the 12 grid columns and is "pushed" to the right by 4 columns.
col-md-4 col-md-pull-8 The "Sidebar" column takes up 4 of the 12 grid columns and is "pulled" to the left by 8 columns.
Thanks
@asmat
Check here for bootstrap-rtl css on 3.1.3.
For Bootstrap version 3.1.3, which doesn't use Flexbox for its grid system, you'll need to rely on a different approach to reorder columns for a right-to-left (RTL) flow in responsive mode. The primary method for this in Bootstrap 3 is using the .col-xx-push-* and .col-xx-pull-* classes.
col-md-8 col-md-push-4 The "Main Content" column takes up 8 of the 12 grid columns and is "pushed" to the right by 4 columns.
col-md-4 col-md-pull-8 The "Sidebar" column takes up 4 of the 12 grid columns and is "pulled" to the left by 8 columns.
Thanks
luishp has reacted to this post.